Nginx域名重定向,编辑域名配置文件,在server段添加以下内容
if ($host = 'haiyun.me' )
{
rewrite ^/(.*)$ https://www.haiyun.me/$1 permanent;
}
当访问haiyun.me时301重定向为www.haiyun.me
2.当网站目录改变时重定向转移权重
rewrite ^/test/(.*)$ /archives/$1 permanent;
发布时间:February 29, 2012 // 分类:Nginx // No Comments
Nginx域名重定向,编辑域名配置文件,在server段添加以下内容
if ($host = 'haiyun.me' )
{
rewrite ^/(.*)$ https://www.haiyun.me/$1 permanent;
}
当访问haiyun.me时301重定向为www.haiyun.me
2.当网站目录改变时重定向转移权重
rewrite ^/test/(.*)$ /archives/$1 permanent;