【发布时间】:2014-05-15 10:18:01
【问题描述】:
我在尝试使用 htaccess 将 www 重定向到非 www 时遇到一个问题。
这是我的 .htaccess 代码:
Options All -Indexes
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
当我访问http://www.zipurl.me/developer 时,我会重定向到http://zipurl.me/developer。 但是当我访问我的主页时,http://www.zipurl.me 我没有重定向到http://zipurl.me。
有什么建议吗?
【问题讨论】:
标签: apache .htaccess mod-rewrite redirect web