To enable directory browsing in Apache web server, edit httpd.conf file and add option “Indexes” to “Directory” tag.
So your tag will look like this
<Directory />
Options FollowSymLinks MultiViews
AllowOverride None
</Directory>
and modify it like below
<Directory />
Options FollowSymLinks MultiViews Indexes
AllowOverride None
</Directory>
Restart Apache and you should be able to do directory browsing.



Thanks for your comment, but would be helpful if you would complete what you want to suggest.
Comment by Kavin — July 17, 2009 @ 12:56 pm