- or download this
my $r = Apache->request;
- or download this
<Location /perl>
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
</Location>
- or download this
<Location /foo>
SetHandler perl-script
PerlHandler My::Foo
</Location>
- or download this
package My::Foo;
use strict;
...
}
1;