in reply to Re: External and Internal Redirecting in Mod Perl 2
in thread External and Internal Redirecting in Mod Perl 2

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.