перенаправление поддоменов в подпапки с помощью .htaccess - PullRequest
1 голос
/ 30 ноября 2011

я пытаюсь перенаправить поддомен в подпапку у меня есть 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

Ответы [ 2 ]

0 голосов
/ 05 января 2016

Произошла ошибка ...

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]

последние 2 строки:

RewriteCond %{HTTP_HOST} ^subdomain2.mysite.com$ [NC]
RewriteRule ^(.*)$ subdomain3/$1 [L,QSA]

субдомен2 вместо субдомена3

0 голосов
/ 30 ноября 2011

Я считаю, что ошибка 500 в том, что вы не избежали . в URL:

RewriteCond %{HTTP_HOST} ^subdomain1.mysite.com$ [NC]

должно быть

RewriteCond %{HTTP_HOST} ^subdomain1\.mysite\.com$ [NC]
...