Nginx域名重定向,编辑域名配置文件,在server段添加以下内容
1 2 3 4 |
if ($host = 'onlysong.cn' ) { rewrite ^/(.*)$ http://www.onlysong.cn/$1 permanent; } |
当访问http://onlysong.cn时301重定向为www.onlysong.cn
2.当网站目录改变时重定向转移权重
1 |
rewrite ^/test/(.*)$ /archives/$1 permanent; |
http://www.onlysng.cn/archives/301.html