Jonathan Vanasco wrote: > $self->{'ApacheRequest'}->status(Apache2::Const::REDIRECT);
Don't do that. That's an internal apache code, not an HTTP code. The HTTP code would be something like Apache2::Const::HTTP_MOVED_TEMPORARILY. > return Apache2::Const::REDIRECT; That's the only correct place to use the REDIRECT constant. - Perrin