On Wed, 27 Jun 2001, will trillich wrote:

> okay -- but if you want some of your site to be indexed by the
> standard mod_autoindex, yet have mod_perl intervene for certain
> subtrees, you'll find that mod_perl never gets a chance at it
> because the mod_autoindex gadjets catch it at an earlier stage.
> i think.

How about using RewriteRule? For example, you can do:

RewriteRule /somedir/ index.pl

and then when people visit http://your-site.com/somedir/, it will call
index.pl. index.pl can use $ENV{REQUEST_URI} to determine which directory
to display.

Reply via email to