package Book::Trans; use Apache::Constants qw(:common); sub handler { my $r = shift; return OK if $r->uri() =~ m|^/foo|; return DECLINED; } package Apache::ReadConfig; $PerlTransHandler = "Book::Trans";