nginx 不带www到www域名的重定向

来源:互联网 发布:淘宝店铺一个宝贝上传 编辑:程序博客网 时间:2024/05/15 08:24

nginx 不带www到www域名的重定向

这里,如果是单次重定向用 redirect, 如果永久跳转用 permanent,这里用 permanent

 {

               listen       80;

               server_name  xxx.com www.xxx.com;

               index index.html index.php;

               root  /data/www/wwwroot;

               if ($http_host !~ "^www.xxx.com$") {

                       rewrite  ^(.*)    http://www.xxx.com$1 permanent;

                 }

               ........................

       }


0 0