仅重定向主页

Har*_*nan 20 rewrite nginx

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

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

Mic*_*ton 35

location = / {
    return 301 http://www.test.com/fedex-orders/;
}
Run Code Online (Sandbox Code Playgroud)

=in的使用指定 URL 必须完全匹配,在它之前或之后没有任何其他内容。location= //