I'm trying to put both conditions in one line..
I want to change domain name to example.com if visitor came from any another url except for exampl2.com
that means if i came from example3.com/blah/blah it should be -> example.com/blah/blah
and if i came from example2.com/blah/blah it should stay the same
I have the first part done
#RewriteCond %{HTTP_HOST} !^(www\.)?example.com$ [NC]
#RewriteRule ^(.*)$ http://example.com/$1 [L,R]
This one says if website is not www.example.com or example.com then change domain to example.com How do i exclude example2.com from this and keep it as it is without changing to any other domain ?
RewriteCond %{HTTP_HOST} !^(www\.)?example2\.com$ [NC]EXCLUDES example2.com from the rule. The!means DON'T APPLY THE NEXT RULE IF THE FOLLOWING STRING IS PRESENT. That's what you are asking for. – faa Feb 2 at 19:19