in reply to •Re: cgi redirect (again)
in thread cgi redirect (again)
I haven't been able to find any reference documenting this behaviour, but I've never been able to force an internal redirect on Apache unless I omitted the Status: header (which redirect() adds by default) using...
...or even...print $q->redirect( -status => "", -uri => "/cgi-bin/Auto.cgi" );
print "Location: /cgi-bin/Auto.cgi\n\n";
Maybe you'll have better luck with one of these?
--k.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
•Re: Re: Re: cgi redirect (again)
by merlyn (Sage) on Dec 03, 2002 at 16:08 UTC | |
by EvdB (Deacon) on Dec 03, 2002 at 19:56 UTC |