I want to redirect all of my old domain request to my new domain using htaccess file. Below is what I am using but it does not work if the page is not on the new site. For e
This will direct everything from the old host to the root of the new host:
RewriteEngine on RewriteCond %{http_host} ^www.old.com [NC,OR] RewriteCond %{http_host} ^old.com [NC] RewriteRule ^(.*)$ http://www.thenewdomain.org/ [R=301,NC,L]