infoscigeek
2/28/2017 - 6:51 AM

Redirect all blog posts and pages to a new domain while retaining structure

Redirect all blog posts and pages to a new domain while retaining structure

RewriteEngine on
RewriteCond %{HTTP_HOST} ^oldsite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldsite.com [NC]
RewriteRule ^(.*)$ http://newsite.com/$1 [L,R=301,NC]