301重定向 把网站不带www的转到带www的域名里

 

 

方法一:在网站根目录下创建.htaccess这个文件。然后添加如下规则 

 


RewriteEngine On

RewriteCond %{HTTP_HOST} ^xiaoyao88.cn$ [NC]

RewriteRule ^(.*)$ http://www.xiaoyao88.cn/$1 [R=301,L]

 

方法2  Linux主机(Nginx环境适用)

 通常在 /usr/local/nginx/conf/目录下可以找到用nginx.conf 此文件

301重定向 把网站不带www的转到带www的域名里_第1张图片

 

在server 里面 只需要添加此部分,并且更改其中的域名:

 

if ( $host != 'www.xxxx.com' )

{

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

}

然后重启nginx 命令如下几个:           

/usr/local/nginx/sbin/nginx -s reload 

ps -ef|grep nginx

service nginx restart

 

参考官网文章:http://nginx.org/en/docs/http/converting_rewrite_rules.html

                         https://blog.csdn.net/qingjiaoforever/article/details/51393528

你可能感兴趣的:(#,➸,➳,➻,➛,☞,Linux)