You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Daisuke Maki <da...@wafu.ne.jp> on 2003/03/19 23:31:37 UTC

Does "Indexes" work with mod_perl?

Hi,

I'm having a hard time making mod_perl(1.27) enabled Apache treat
requests to directories so that the directory listing is shown (like the
default behavior when there is not DirectoryIndex file).

I pretty much just threw away all of my mod_perl specific configuration
from my httpd.conf, and the only thing I changed from the default was

   DocumentRoot /path/to/mydocroot
   <Directory "/path/to/mydocroot">
      Options Indexes
   </Directory>

And yet, all I get is a 404 not found.

I found a similar posting on the list archives (e.g.
http://www.mail-archive.com/modperl@apache.org/msg30237.html), but
didn't see any responses...

Is there anyway to fix this?

--d