仅重定向主页

仅重定向主页

我只需要重定向http://shop.test.comhttp://www.test.com/fedex-orders/

仅主页。没有其他内容。即 http://shop.test.com/?page=blog不应重定向。

答案1

location = / {
    return 301 http://www.test.com/fedex-orders/;
}

使用=location= /指定 URL 必须/完全匹配,其前面或后面不能有任何其他内容。

答案2

如果你在寻找如何在 Apache 中解决这个问题的答案;这将是你想要的:

RedirectMatch permanent ^/$ http://www.test.com/fedex-orders/

相关内容