Thursday, 22 August 2013

How to make media.test.com mirror test.com with htaccess

How to make media.test.com mirror test.com with htaccess

I want to take the contents of my site: test.com and mirror it on
media.test.com with .htaccess. How can I do this?
I've tried using something like this...
RewriteCond %{HTTP_HOST} ^(www.)?domain\.com$ [NC]
RewriteRule ^(.*)$ http://blog.domain.com/$1 [P,L]
...but it didn't work, any help?

No comments:

Post a Comment