package Apache::MyHandler use Apache::Constants qw(OK); sub handler { my $r = shift; $r->send_http_header('text/plain'); $r->print('example'); return OK; } 1;