无法使用.htaccess

时间:2017-01-22 09:21:39

标签: php html apache .htaccess

我有一个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

1 个答案:

答案 0 :(得分:2)

您需要在.htaccess中使用以下内容:

RewriteEngine On

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

确保在测试之前清除缓存。