I have my main account and another domain that points one directory down. I set up my main account (top level directory) with the following code to redirect all traffic from example.com to www.example.com. The problem is my other domain is then changed from www.otherdomain.com to www.example.com/otherdomain.
Is there away to turn off the main htaccess mod rewrite instructions for my domain one directory down?
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]