.htaccess not working (mod_rewrite)

前端 未结 16 1779
遇见更好的自我
遇见更好的自我 2020-12-08 05:05

I have not having any luck getting my .htaccess with mod_rewrite working. Basically all I am trying to do is remove \'www\' from \"http://www.example.com\" and \"https://ww

16条回答
  •  死守一世寂寞
    2020-12-08 05:30

    How about this rewrite rule?

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

提交回复
热议问题