in reply to Re: Re: Re: Embedded redirection
in thread Embedded redirection
However, is this the most efficient way of doing things? Is it going to clog the system up if the script is accessed very freqeuntly? Thanks.my $result= new CGI; print $result->redirect("http://www.example.com"); close STDOUT; my $pid = fork; exit if $pid; die "fork: $!" unless defined $pid;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Embedded redirection
by Fastolfe (Vicar) on Jan 13, 2001 at 07:50 UTC |