Make apache automatically strip off the www.?

后端 未结 6 1968
一生所求
一生所求 2021-01-03 08:56

For various reasons, such as cookies, SEO, and to keep things simple, I would like to make apache automatically redirect any requests for http://www.foobar.com/anything to h

6条回答
  •  旧时难觅i
    2021-01-03 09:10

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

    That should do the trick.

提交回复
热议问题