Question fréquemment posée
How to redirect the original site to WordPress if they are not on the same domain?
Dernière mise à jour il y a 10 ans
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.