Redirect all pages to a specific page of a new domain but exclude specific pages
Got it working using the following RewriteEngine On RewriteCond %{HTTP_HOST} ^(?:www\.)?example\.com$ [NC] RewriteRule ^secure-payment$ https://domain.com/secure-payment [L,NC,R=301] RewriteRule ^blog/news/please-help$ https://domain.com/blog/news/please-help [L,NC,R=301] RewriteRule ^ https://domain.com/rebrand-explained/ [L,NC,R=301]