I need to redirect all request for a domain except request made to a directory on the domain.
Example:
www.my-domain.com (redirect)
www.my-domain.com/form/ (no redirect)
Below is the current mod rewrite directive
RewriteCond %{HTTP_HOST} ^my-domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.my-domain.com$
RewriteRule ^(.*)$ "http\:\/\/www\.my-other-domain\.com\/$1" [R=301,L]
Any help would be great.
Thanks
Dan