Rewrite rule is directing www.otherdomain.com to www.maindomain.com correctly.
But www.otherdomain.com/folder/index.html is not redirecting to www.maindomain.com/folder/index.html but showing as
www.otherdomain.com/folder/index.html still
Here is the section in .htaccess
CODE
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?otherdomain.com$ [NC]
RewriteRule ^(.*)$ http://www.maindomain.com/$1 [R=301,L]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?otherdomain.com$ [NC]
RewriteRule ^(.*)$ http://www.maindomain.com/$1 [R=301,L]
Any help appreciated.
Thanks
Howard










