> tried on success authentication .. > $r->header_out('redirect.html'); > return REDIRECT;
Shouldn't you be doing : use Apache::Constants qw(REDIRECT OK); [............] [............] $r->header_out(Location => 'redirect.html'); $r->status(REDIRECT); $r->send_http_header; return OK; Thanks, Pratik -- http://pratik.syslock.org