I need to redirect everything on one site to a new domain, except one path.
So domain.com/anything needs to go to newdomain.com/anything.
But I don\'t want d
Try this then:
RewriteCond %{REQUEST_URI} !^/services/xml RewriteCond %{HTTP_HOST} .* RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]