Hello!
I have a rule in .htaccess whereby all routes with the .ru domain should be redirected to the same routes only with the .com domain
RewriteCond %{HTTP_HOST} ^domain.ru RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.domain.ru RewriteRule ^(.*)$ http://domain.ru/$1 [R=301,L]
In principle, everything is OK here, except for one - I need to add an exception for one (in the future maybe several) pages. How to do it right?