Directory Indexing in Apache

From Initq

Jump to: navigation, search

Let's say you have some directories you want to see from a server that is running Apache. The easiest way is to edit the httpd.conf file and add the following at the end.

Alias /40corelog "/opt/apptricity/apptricity_erm_40/apptricitylog"
<Directory "/opt/apptricity/apptricity_erm_40/apptricitylog">
Options Indexes Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>

You need to have the following module installed also for Fancy indexing:

LoadModule autoindex_module   libexec/mod_autoindex.so
Personal tools