| ||||||
| 5/24 |
| 2000/7/13-14 [Computer/SW/Languages/Misc, Computer/SW/Languages/Web, Computer/SW/Unix] UID:18662 Activity:kinda low |
7/13 How can I redirect a web page to another page automatically on
loading? I've checked lots of HTML guides and have seen this
happen before (no CGI) but can't find the code
\_ In <HEAD> section:
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=<DEAD>new-url/"<DEAD>
Change 0 to N to delay by N seconds. This is a means of
mimicking HTTP headers in HTML, and is not 2.0-standard, so
may not be supported by some of the oldest browsers. Anything '96
and up is more or less guaranteed to support it. -alexf
\_ thanks!
\_ You're better off with a server side redirect but meta-
refresh will work if you're stuck on geocities or some
other garbage site. |
| 5/24 |
|