shak380 has asked for the wisdom of the Perl Monks concerning the following question:
It did not work on either Apache1 or Apache2. So I changed it like this :sub run_mode_xxx { return $self->header_props( -uri => $url ); }
Now, it works on Apache2, but Apache1 shows "The document has moved here". We have tried with :sub run_mode_xxx { $self->header_add( -location => $url ); return; }
Still no luck. Any thoughts/fixes will be highly appreciated. Thanksreturn $self->header_props( -uri => $url );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI::Application redirect not working (cgi/nph)
by Anonymous Monk on Mar 20, 2013 at 15:54 UTC | |
|
Re: CGI::Application redirect not working
by locked_user sundialsvc4 (Abbot) on Mar 20, 2013 at 17:22 UTC | |
|
Re: CGI::Application redirect not working
by saberworks (Curate) on Mar 20, 2013 at 23:57 UTC | |
by Anonymous Monk on Mar 21, 2013 at 01:46 UTC |