in reply to External and Internal Redirecting in Mod Perl 2

Hi Does anybody have any idea on this............? Thanks in advance. Mohammed Shakir
  • Comment on Re: External and Internal Redirecting in Mod Perl 2

Replies are listed 'Best First'.
Re^2: External and Internal Redirecting in Mod Perl 2
by shak380 (Novice) on Dec 03, 2010 at 09:31 UTC
    I have fixed this. If anybody has the same issue, I think they can use the way I did. It is given below :
    use Apache2::Const -compile => qw(REDIRECT); $r->headers_out->set('Location' => $url); $r->status(Apache2::Const::REDIRECT);
    Let me know if anybody has any more issues related to this.