Forum Moderators: phranque
I want to rewrite a sub domain to a directory below document root using .htaccess
I dont have access to VirtualHost
This is the effect im trying to get:
Current document root: /home/site/html/
Desired Subdomain root: /home/site/sub/
This is what I have to get ya started!
.htaccess
RewriteEngine On
RewriteBase ../
rewriteCond %{HTTP_HOST} ^(sub)\.domain\.com [NC]
rewriteRule ^(.*)$ /sub/$1 [L]
Thanks
However, you could rewrite to /home/site/html/sub if that would help. I have already posted that code today, so forgive me if I don't repeat it here.
Jim