How to reference %Location outside of <Perl>...</Perl>?
E R <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
I have the following <Perl> block in my httpd.conf file which installs
mod-perl handlers for a list of urls:
<Perl>
...
for my $uri (...) {
$Location{$uri} = ...;
}
</Perl>
If I wanted to move this code to a normal perl module, how should I
reference %Location?
Thanks,
ER