我想实现以下目标:
http://domain.com -> http://www.domain.com
http://sub.domain.com -> http://sub.domain.com(而不是 http://www.sub.domain.com)
我今天一直在搜索,但找不到解决方案。希望有人在这里提供帮助。
我想实现以下目标:
http://domain.com -> http://www.domain.com
http://sub.domain.com -> http://sub.domain.com(而不是 http://www.sub.domain.com)
我今天一直在搜索,但找不到解决方案。希望有人在这里提供帮助。
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放在您.htaccess
的DOCUMENT_ROOT
目录下:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]