nginx 301

Nginx实现301跳转

以下示例实现非xxx.com域名访问一律301跳转到xxx.com


              if ($host != 'xxx.com') {
                    rewrite ^/(.*)$ http://xxx.com/$1 permanent;
              }



使用permanent,发送301永久定向,对搜索引擎更加友好
原文地址:https://www.cnblogs.com/lexus/p/1801041.html