Jamie Krasnoo wrote:
[...]
$r->headers_out(Location => '/some/place.html');
return Apache::DECLINED;
why DECLINED? just return Apache::OK.
My mistake, its been a while and I'm just getting back into it. So its
like I'm learning everything all over again. You can use OK? The example
in the Eagle boo
On Tue, 2003-07-22 at 03:10, Jamie Krasnoo wrote:
> On Tue, 2003-07-22 at 02:50, Stas Bekman wrote:
> > Jamie Krasnoo wrote:
> > > What would be the best way to redirect in MP2? How would I set the
> > > Location in the header?
> >
> > not any different from mp1 (assuming that you have been workin
On Tue, 2003-07-22 at 02:50, Stas Bekman wrote:
> Jamie Krasnoo wrote:
> > What would be the best way to redirect in MP2? How would I set the
> > Location in the header?
>
> not any different from mp1 (assuming that you have been working with mp1
> before, but the mp1 documentation and literature
Jamie Krasnoo wrote:
What would be the best way to redirect in MP2? How would I set the
Location in the header?
not any different from mp1 (assuming that you have been working with mp1
before, but the mp1 documentation and literature can be used as a reference
for most mp2 things).
something lik
What would be the best way to redirect in MP2? How would I set the
Location in the header?
something like this?
my $r = Apache->request;
# docs say $r->header_out and family are now deceased.
$r->headers_out(Location => '/some/place.html');
return Apache::DECLINED;
Jamie Krasnoo