apache .htaccess no-www to www

2012/01/12 09:07
阅读数 145

有两种办法

1.在.htaccess的适当位置加入如下代码 yourdomain改成你的域名

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com [NC]
RewriteRule ^(.*) http://www.yourdomain.com/$1 [L,R=301]

2.在 apache的配置文件中

RewriteEngine On
RewriteOptions Inherit
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://www.yourdomain.com/$1 [L,R]
展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部