nginx 301

Nginx实现301跳转

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


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



使用permanent,发送301永久定向,对搜索引擎更加友好

你可能感兴趣的:(nginx)