Make apache automatically strip off the www.?

后端 未结 6 1929
一生所求
一生所求 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条回答
  •  借酒劲吻你
    2021-01-03 09:19

    simpler and easier to copy from site to site:

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

提交回复
热议问题