Let's assume that we have these lines in the apache config:
<Location /my/location> SetHandler modperl PerlResponseHandler MyApp::Handler </Location>
How can MyApp::Handler obtain an information that it is running within "/my/location"?
Thank you for any help!
Jozef
-- jozef kosoru http://zyzstar.kosoru.com
$r->location
As long as first you do:
use Apache::RequestUtil ();
I think.
dave