My .htaccess file look like this:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule /oldpage newdomain.com/newpage [R=301,L]
RewriteRule /oldpage2 newdomain.com/newpage2 [R=301,L]
RewriteRule /oldpage3 newdomain.com/newpage3 [R=301,L]
RedirectMatch 301 ^/.*$ newdomain.com
The last rule I need to redirect all other pages to newdomain.com
When I try Redirect 301 instead of RewriteRule - it doesn't work at all, all pages go to newdomain.com ignoring other rules.
With RewriteRule it worked for ~15 minutes properly and then the same issue, all pages go to newdomain.com ignoring other rules.