loader

How do you automatically forward a web site to another URL, preferrably using HTML? Print

  • 3

Redirecting with HTTP-EQUIV Refresh
The "Refresh" HTTP-EQUIV meta-tag allows you to specify a timeout and a new page to load once that timeout has expired. To use it add the following to the HTML of the page line between the <HEAD> and </HEAD> sections:

<META http-equiv="refresh" content="5; URL=http://www.expiry.com">Note:

The timeout (shown here as 5) is in seconds.
Be sure to change the URL to that of the desired page.
Insert double quotes exactly as shown.


Was this answer helpful?

« Back