Make apache automatically strip off the www.?

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

    It's as easy as:

    
            ServerName www.example.com
            Redirect permanent / http://example.com/
    
    

    Adapt host names and IPs as needed :)

提交回复
热议问题