Hi I have a parked domain (example.com) and I am trying to redirect them to the primary address (example2.com) but within a folder.
So requests for
example.com/robots.txt
would go to
example2.com/example/robots.txt
I also need it to work with and without www.
The current code i have got is
Code:
RewriteCond %{HTTP_HOST} ^example.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteCond %{REQUEST_URI} ^\/robots\.txt
RewriteRule ^/?$ "http\:\/\/www\.example2\.com\/example\/robots\.txt" [R=301,L]
but it doesn't work.
Thanks in advance
Andy