Automatically
Redirect to a New Web Page
When you need to redirect a
person to a new page or a new domain, you can use this code so they will
be redirected automatically.
Insert this code between your
<head> and </head> tags.
<meta HTTP-EQUIV="REFRESH"
content="0; url=http://www.yourdomain.com/index.html">
|
You can change the 0 to the
number of seconds you would like the browser to wait before redirecting
the visitor. It is also good practice to include a link on the page you
place this code on, incase the redirect fails for any reason, and the
visitor can click a link to access the new page.
|