I have been reading and reading and reading. I can't seem to get the correct settings.
I want to have a parked domain forward to one page on my site. I want it to show the parked domain as the domain. However leaving the rest of the site untouched.
I have written
my understanding is this will only redirect if that domain doesn't reside in that directory. If it does reside in that directory then don't redirect. But this keeps looping and looping.
WHAT AM I DOING WRONG?
I want to have a parked domain forward to one page on my site. I want it to show the parked domain as the domain. However leaving the rest of the site untouched.
I have written
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} parkeddomain.net$
RewriteCond %{REQUEST_URI} !^/dir/dir/?cat=1084&manufacturer=Main
RewriteRule ^(.*)$ http://parkeddomain.net/dir/dir/?cat=1084&manufacturer=Main [R=301,L]
WHAT AM I DOING WRONG?