Frequently Asked Question
How to redirect the original site to WordPress if they are not on the same domain?
Last Updated 9 years ago
You just have to put these lines in the .htaccess file on the original site:
And be sure that the Redirect checkbox is selected on WordPress.
RewriteCond %{HTTP_HOST} ^www.original-site.com [NC]
RewriteRule ^/?(.*) http://www.wordpress-site.com/$1 [L,R=301]
And be sure that the Redirect checkbox is selected on WordPress.