views:

19

answers:

1

Hi, wonder if you can help me,

I've got a hosting account (on GoDaddy for my sins) which has one domain name associated with it and a few more parked.

If I visit:

site1.com site2.com site3.com

I get the contents of /httpdocs/

I want to redirect to a sub directory (locally) only so that if you goto site2.com, the URL stays as site2.com but the content is loaded from /httpdocs/site2.com/.

How can I acheive that?

A: 
RewriteCond %{HTTP_HOST} site2.com
RewriteCond %{REQUEST_URI} !^/site2.com
RewriteRule ^(.*)$ site2.com/$1 [L]
Oli