如何写nginx的 301 重定向

2010年12月12日星期日 | | |

301重定向,把www.haply.info和haply.info合并,并把之前的域名也一并合并. 有两种实现方法,第一种方法是判断nginx核心变量host(老版本是http_host):
server {
server_name www.haply.info haply.info ;
if ($host != 'www.haply.info' ) {
rewrite ^/(.*)$ http://www.haply.info/$1 permanent;
}

}
第二种方法:
server {
server_name haply.info;
rewrite ^/(.*) http://www.haply.info/$1 permanent;
}
我用的是第一种方法,这两种方法中, permanent是关键,详细说明见nginx重定向规则说明。

last – 基本上都用这个Flag。
break – 中止Rewirte,不在继续匹配
redirect – 返回临时重定向的HTTP状态302
permanent – 返回永久重定向的HTTP状态301

0 评论:


所有文章收集于网络,如果有牵扯到版权问题请与本站站长联系。谢谢合作![email protected]