apache配置文件从url中删除www

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache配置文件从url中删除www相关的知识,希望对你有一定的参考价值。

remove the www usually located at the beginning of the url :
www.url.com -> url.com
http://www.url.com/file.html -> http://url.com/file.html
http://www.url.com/directory/file.html -> http://url.com/directory/file.html
etc...
  1. RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
  2. RewriteRule ^(.*)$ http://example.com$1 [R=301,L]

以上是关于apache配置文件从url中删除www的主要内容,如果未能解决你的问题,请参考以下文章