配置多个域名权重变了。比如第一个是主域名,其他的跳转到主域名。
if ($host != 'test.com' ) {
rewrite ^/(.*)$ http://test.com/$1 permanent;
}
更改test.com.conf
server
{
listen 80;
server_name test.com test1.com test2.com;
index index.html index.htm index.php;
root /data/wwwroot/test.com;
if ($host != 'test.com' ) {
rewrite ^/(.*)$ http://test.com/$1 permanent;
}
}
server_name后面支持写多个域名,这里要和httpd的做一个对比
permanent为永久重定向,状态码为301,如果写redirect则为302
本文转自 虾米的春天 51CTO博客,原文链接:http://blog.51cto.com/lsxme/2057259,如需转载请自行联系原作者