apache - show directory content

hi mate, you need to enable indexing on apache, by default it's not set on. either edit http.conf and add directory then allow indexing

i'd suggest using a simple php script to do the indexing for you, looks much pritier.

<Directory /var/www/my_folder>
Options +Indexes
</Directory>

or u can add options in .htaccess files in each folder, if you don't want to allow full folder indexing
 
Back
Top