This will allow you to set up a home page on another machine and
link other home sites directly to one place. The example illustrates
how to set up a page which replaces itself with another page. You can
use a local URL (same machine) or a URL from another machine. Here
both the original and forwarded URL are on the same machine.
use the following line:
<meta http-equiv=refresh content="time; url=where_to_go">
Where time is in seconds before going to next page, and "where_to_go" is
the page to go to. Hope this helps.
FOR EXAMPLE: the forwarding page would be:
<html>
<body>
Forward to next page after 10 seconds
<meta http-equiv=refresh content="10; url=FinishPage.html>"
</body>
<html>
which would delay 10 seconds (too long for me) and forward to a
page named FinishPage.html which would display the intended page
and the FinishPage.html could be
<html>
<body>
Final Page
</body>
</html>
Click HERE to see it work!