Hi,

I have asked on this list about how I can put a handler listen just to the /
location, but not to other locations which are not handled by other perl
handlers.

I found the answer, and here it is:

Instead of using:

<Location />
SetHandler perl-script
PerlResponseHandler ModPerl::Testing
</Location>

I can use:

<LocationMatch ^/$>
SetHandler perl-script
PerlResponseHandler ModPerl::Testing
</LocationMatch>

Teddy


Reply via email to