为什么页面没有重定向到www?

时间:2012-11-28 04:38:13

标签: apache .htaccess http-redirect

在我网站的根目录中,我创建了一个名为.htaccess的文件。并将以下代码放入其中。但是当我访问 example.com/test.html 时。

它不会重定向到http://www.example.com/test.html

RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com$ [NC];
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
谢谢,这是什么原因?

2 个答案:

答案 0 :(得分:1)

删除第二行的分号。

试试这个

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

答案 1 :(得分:1)

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