package Apache::GoHome;

use strict;
use Apache::Constants qw(REDIRECT);

sub handler {
   my $r = shift;
   $r->content_type('text/html');
   $r->header_out(Location => 'http://www.ora.com/');
   return REDIRECT;
}

1;
__END__
