On Fri, Nov 08, 2002 at 02:18:31PM -0800, Carol Nguyen wrote:
[snip]
> <html>
> <head>
> <meta http-equiv="refresh" content="1;
> url=http://www.mysite.com/index.html";>
> </head>
> </html>
> 
> this should redirect to the new url.  

Or just use HTTP headers to redirect (almost) instantly:

print "Location: http://www.mysite.com/index.html\n\n";;

That's just how this works: http://www.jedimike.net/cgi-bin/links/random.pl
It uses the Location header to redirect the user to a random page each time it's
accessed.

-- 
Michael

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to