[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Redirections



on 8/8/00 7:00 AM, into it at intoitall@xxxxxxxxx wrote:

> watch out when using the meta refresh...
> 
> there is a good chance you will trap viewers in porno
> site syndrome...
> 
> currently i am w orking on a server side browser
> sniffer redirect  and need help...

I didn't catch the initial thread, but if you want to do a 'redirection'
just send a header

i.e.

#!/usr/bin/perl
echo "Location: http://host.com/path";;

or in PHP
<? header("Location: http://host.com/path";); ?>

-k