我只需要将http://shop.test.comredirect到http://www.test.com/fedex-orders/
只是主页。 没有其他的。 即http://shop.test.com/?page=blog不应该redirect。
location = / { return 301 http://www.test.com/fedex-orders/; }
使用= in location = /指定URL必须与/完全匹配,没有任何其他的前后任何内容。
如果你在Apache中寻找答案如何解决这个问题; 这将是你想要的:
RedirectMatch permanent ^/$ http://www.test.com/fedex-orders/