How do I redirect visitors from my old site to my new site?
You can get visitors from your old site to come to your new site in one of three ways:
You can simply leave a message on your old site with a link to your new site.
You can put in a meta tag (a special piece of HTML code) that will automatically redirect users from your old website to your new web site. The code looks like this:
<meta http-equiv="refresh" content="1;url=THENEWURL">
Where "1" is the number of seconds until the redirect occurs and "THENEWURL" is the URL of your website (e.g. "http://www.abc.com/"). Don't forget to include the "http://" part of the URL or the code won't work.
that will do the trick...lol
|