1

我想实现以下目标:

http://domain.com -> http://www.domain.com

http://sub.domain.com -> http://sub.domain.com(而不是 http://www.sub.domain.com)

我今天一直在搜索,但找不到解决方案。希望有人在这里提供帮助。

4

1 回答 1

0

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_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]
于 2013-06-25T15:33:38.133 回答