多域名同内容的 301 重定向不会影响 SEO。
Nginx域名重定向设置:
更改xxx.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;}}
参考:
