我有一个html网页,在网站的徽标上,我将我的徽标网址编写为
example.com
我现在想要将对example.com
发出的所有请求重定向到http://www.example.com
到目前为止,这是我的.htaccess
:
ErrorDocument 404 http://www.example.com/404.html
Redirect /index.html http://www.example.com
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule (.*)$ http://www.example.com/$1 [R=301,L]
example.com
未被重定向到http://www.example.com
。
答案 0 :(得分:2)
您需要在.htaccess
中使用以下内容:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
确保在测试之前清除缓存。