0

我在 .htaccess 中有这段代码:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !\.(css|gif|ico|jpg|js|png|swf|txt)$

# If empty subdomain, replace with "www"
RewriteCond %{HTTP_HOST} ^example.com$ 
RewriteRule ^(.*) http://www.example.com/$1 [QSA,L,R=301]

# If subdomain isn't empty and not "www", redirect to "folder"
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteCond %{HTTP_HOST} ^(.*)\.example\.com$
RewriteRule (.*) http://www.example.com/%1/$1 [QSA,R=301]

#PAGES REDIRECTION
RewriteRule ^(.*)/register/ /index.php?sub=$1&page=register
RewriteRule ^(.*)/register  /index.php?sub=$1&page=register
RewriteRule ^(.*)/lostpass/ /index.php?sub=$1&page=lostpass
RewriteRule ^(.*)/lostpass  /index.php?sub=$1&page=lostpass
...

(通配符子域的规则已经到位并且正在运行)

如果我浏览到http://test.example.com它会正确重定向到http://www.example.com/test但是当我尝试浏览到http://test.example.com/register时,它实际上会重定向到http://www.example.com/test/index.php?sub=http://www.example.com/test&page=register应该重定向到http://www.example.com/test/register

我在这里做错了什么?提前致谢!

4

1 回答 1

0

尝试将L标志添加到您的第二个重定向规则,类似于第一个重定向规则。

RewriteRule (.*) http://www.example.com/%1/$1 [QSA,R=301,L]

看起来您重写的 URI 正在传递到下一条规则

另外,我认为您的前两个不在RewriteCond正确的位置。

于 2013-01-08T01:07:45.030 回答