Code to redirect a page to another URL.
[-
# mod_perl redirect
use Apache;
use Apache::Constants qw(REDIRECT);
# url goes here
$req_rec->header_out("Location" => "[PUT YOUR URL HERE]");
$req_rec->status(REDIRECT);
-]Code to redirect a page to another URL.
[-
# mod_perl redirect
use Apache;
use Apache::Constants qw(REDIRECT);
# url goes here
$req_rec->header_out("Location" => "[PUT YOUR URL HERE]");
$req_rec->status(REDIRECT);
-]