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...
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC] RewriteRule ^(.*)$ http://example.com$1 [R=301,L]
以上是关于apache配置文件从url中删除www的主要内容,如果未能解决你的问题,请参考以下文章
从 zend 框架上 apache 2.4.6 的 url 中删除 index.php
从 Apache 配置中删除 /var/www/icons 别名 [关闭]
在 Apache 服务器上获取 .htaccess 文件? (从 url 中删除 html)
从 AngularJS url 中删除片段标识符(# 符号)