在我网站的根目录中,我创建了一个名为.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]
谢谢,请问是什么原因?
在我网站的根目录中,我创建了一个名为.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]
谢谢,请问是什么原因?
删除第二行的分号。
尝试这个
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]