There are several ways to redirect from one page/site to another.
To preserve webpage status: The most search engine friendly is to use a 301 redirect rather than a redirect in the html.
To redirect from one domain to another:
Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
Please REPLACE www.newdomain.com in the above code with your actual domain name.
In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.
Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.
~Roland
vwebworld1/29/2008 10:29 AM
-------------------------
Web Design |
Best Beef Jerky |
ecommerce articles |
Follow vwebworld on Twitter