nginx設置域名301重定向的方法:
修改nginx中對應該網站的配置文件,例如:
//判斷nginx核心變量hostserver {server_name www.123.com 123.com ;if ($host != 'www.123.com' ) {rewrite ^/(.*)$ http://www.123.com/$1 permanent;}...}
//判斷nginx核心變量host
server {
server_name www.123.com 123.com ;
if ($host != 'www.123.com' ) {
rewrite ^/(.*)$ http://www.123.com/$1 permanent;
}
...