i am trying to redirect a subdomain to a subfolder i have 3 sub-domains pointing to a folder named "test" placed on the root (/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
link|improve this question
is the <br/> on this line RewriteRule ^(.*)$ subdomain2/$1 [L,QSA]<br/> an error here or is that in your htaccess file? – Matt Asbury Nov 30 '11 at 11:18
Ah no Matt its a spelling mistake i removed it !! – Chawki MATTA Nov 30 '11 at 11:31
feedback

1 Answer

I believe the 500 error is because you haven't escaped your . in the URL:

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

should be

RewriteCond %{HTTP_HOST} ^subdomain1\.mysite\.com$ [NC]
link|improve this answer
thank you Matt for your help!! i tried to escape the dots but still having the same error!! my domain contains a "-" does that means anything ? – Chawki MATTA Nov 30 '11 at 11:44
the htaccess is placed in the folder "test" do i put it on the root level and change the RewriteBase ? – Chawki MATTA Nov 30 '11 at 11:50
Move the htaccess to the root and try escaping your hyphen as well. – Matt Asbury Nov 30 '11 at 12:01
htaccess moved to the root, hyphen escaped and got the same result !!! – Chawki MATTA Nov 30 '11 at 12:47
i made sure that mode rewrite is working by adding RewriteEngine On Options +FollowSymLinks RewriteRule ^google\.html http://www.google.com/? [R=301,L] – Chawki MATTA Nov 30 '11 at 13:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.