【发布时间】:2012-01-09 15:09:15
【问题描述】:
我正在尝试将子域重定向到子文件夹 我有 3 个子域指向位于根目录 (/test) 上的名为“test”的文件夹
subdomain1.mysite.com
subdomain2.mysite.com
subdomain3.mysite.com
in test i have 3 folders `/test/subdomain1 , /test/subdomain2, /test/subdomain3`
what i want is that:
when i go to subdomain1.mysite.com it should be reading from: /test/subdomain1
when i go to subdomain2.mysite.com it should be reading from: /test/subdomain2
when i go to subdomain3.mysite.com it should be reading from: /test/subdomain3
here is my htaccess used - placed in the folder "/test" and i think here is the problem!!:
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^subdomain1.mysite.com$ [NC]
RewriteRule ^(.*)$ subdomain1/$1 [L,QSA]
RewriteCond %{HTTP_HOST} ^subdomain2.mysite.com$ [NC]
RewriteRule ^(.*)$ subdomain2/$1 [L,QSA]
RewriteCond %{HTTP_HOST} ^subdomain2.mysite.com$ [NC]
RewriteRule ^(.*)$ subdomain3/$1 [L,QSA]
</IfModule>
i am getting a "500 Internal Server Error" when accessing any subdomain...
does RewriteBase works in subfolders ? if not placed the root ?
any idea?
thanks
【问题讨论】:
-
这一行的
<br/>RewriteRule ^(.*)$ subdomain2/$1 [L,QSA]<br/>是这里的错误还是在您的 htaccess 文件中? -
啊不,马特这是一个拼写错误,我删除了它!
标签: .htaccess redirect subdomain mod-rewrite