I need your help.
I'd like to 301 a Wordpress site to another domain. Ideally, every page on the old site should send folks to the home page of the new site. For example:
oldsite.com ---> newsite.com
oldsite.com/about/ ---> newsite.com
oldsite.com/contact/ ---> newsite.com
oldsite.com/whatever/ ---> newsite.com
I know there are a few options - for example, putting something like the following in the .htaccess file:
RewriteEngine on
RewriteRule ^(.*)$ http://newsite.com/$1 [R=301,L]
... or inserting some redirect code in the header.php file
... or using something like this plugin or this plugin.
Strangely, I've never had a reason to 301 a site, and realize this is a facepalm question. I admit my ignorance.
I'm looking for the easiest way possible, preferably something I can do through the WP dashboard or cpanel.
What method would you suggest?
I'd like to 301 a Wordpress site to another domain. Ideally, every page on the old site should send folks to the home page of the new site. For example:
oldsite.com ---> newsite.com
oldsite.com/about/ ---> newsite.com
oldsite.com/contact/ ---> newsite.com
oldsite.com/whatever/ ---> newsite.com
I know there are a few options - for example, putting something like the following in the .htaccess file:
RewriteEngine on
RewriteRule ^(.*)$ http://newsite.com/$1 [R=301,L]
... or inserting some redirect code in the header.php file
... or using something like this plugin or this plugin.
Strangely, I've never had a reason to 301 a site, and realize this is a facepalm question. I admit my ignorance.
I'm looking for the easiest way possible, preferably something I can do through the WP dashboard or cpanel.
What method would you suggest?