Make apache automatically strip off the www.?

后端 未结 6 1932
一生所求
一生所求 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:24

    Since you mentioned using mod_rewrite, I'd suggest a simple rule in your .htaccess - doesn't seem monstrous to me :)

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

提交回复
热议问题