Hi I want to be able to close down one site and have any natural search and link traffic to automatically go to the new website. How can I do this without losing page rank or giving the user a 404 error page. Any help will be appreciated.
webseo, You'll want to use what's known as a 301 redirect. You can do so via an .htaccess file like so: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] It's as easy as pie.
Sinply create a .htaccess file into your root directory with the below line in bold: ErrorDocument 404 http ://websiteurl.com Remove Space b/w http and ://websiteurl.com