仅重定向主页

时间:2013-03-25 05:47:55

标签: mod-rewrite url-rewriting nginx rewrite

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

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

1 个答案:

答案 0 :(得分:0)

添加如下位置:

location = / {
   if ($args !~* .+ ) { 
      return 301 http://www.test.com/fedex-orders;
   }
}

基本上该位置仅匹配'/',因此其中的任何配置仅适用于主页

因为任何带有get参数的文件都是web服务器的同一个文件,你需要额外的if,只有当正则表达式不匹配时才重定向。