|
Basics
HTML
Java
Colors
Frames
Tables
Fonts
Graphics
Links
Contact
| |
How do i redirect my visitors?
When you move your site to another
server or just another URL, it's nice to leave a page with a redirect script so
that your visitors can find your new page. This script uses meta tags to
redirect your visitor to your page without having to click on a link.
If you set the refresh rate to "0," people will be automatically
transported to your new site. If you would like the redirect time to take
longer, in case you want to leave a message for your visitors to read, you can
experiment with changing the refresh rate to a higher number. The refresh rate
is measured in seconds, so if you put "5" in the code, it will
redirect your visitor in 5 seconds.
Here is the script, you put it in the head tag, between <head> and
</head>:
<meta http-equiv="refresh" content="0; url=your new
address.html"> |