阿里云centOS 将不带3www的域名301重定向到带www域名

阿里云centOS 将不带3www的域名301重定向到带www域名_第1张图片


1.配置阿里云解析设置;

听说这样就可以生效,谁说的麻蛋;

2.我是能够www访问下,再加的不要www访问,添加了几行过滤条件


<VirtualHost *:80>
DocumentRoot "/var/www/html/app/src/htdocs_www"
ServerName 2ciyun.com
 <ifModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond %{HTTP_HOST} ^2ciyun.com [NC]
   RewriteRule ^/(.*)$ https://www.2ciyun.com/$1 [L,R=301]
 </ifModule>
ErrorLog "logs/2ciyun-error_log"
CustomLog "logs/2ciyun-access_log" common
</VirtualHost>


3.可以参考下别人的

http://jingyan.baidu.com/article/29697b913c4a2cab20de3cd9.html







你可能感兴趣的:(解析,域名)