301 Redirect All Pages From One Domain To Another
Jan16
Using a .htaccess file it couldn’t be simpler to redirect all of your pages from one URL to another. If you are moving domains then it is imperative that you redirect all the inner pages, the relevant inner page on the new url. Providing the inner pages have not changed names then the following code should be placed into the HTaccess file.
RewriteEngine onĀ
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]
subscribe to comments RSS
There are no comments for this post