Page is a not externally linkable
ricksterguy - 1:55 pm on Mar 3, 2013 (gmt 0)
This is what I'm using now as a catch-all:
Redirect 301 / [newdomain.com...]
I have also tried this:
RewriteEngine On
RewriteRule ^(.*)$ [newdomain.com...] [R=301]
and this:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.olddomain.com$
RewriteRule ^(.*)$ [mydomain.com...] [R=301,L]
Everything I've tried attempts to redirect the old page to a corresponding page on the new domain which results in a 404 error.