Redirect a WP to another with all URL
If you want 301/302 redirect sitewide my suggestion is to use .htaccess file, but that’s not a good practice at all. Anyway the code should be something like this Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC] RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L] Note: Change the R=301 to whatever you would want where R=301 would … Read more