• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do you make apache show directories?

Originally posted by: 22Admub
I think you just make sure that there's no file in your ./folder that's name index.*
That should do it.

not quite that simple....
in httpd.conf yo have to set the "Options" for a particular directory or set "options" for the root of the web, allow overrides and then use htaccess to allow indexing of certain dirs.

i do not allow indexing from the root down, but allow overrides with htaccess....so mine look like this in httpd.conf

<Directory "/var/www/html">
Options -Indexes
AllowOverride AuthConfig Options Indexes FileInfo Limit

then i place an .htaccess into the dir in question:
Options Indexes FollowSymLinks

 
Back
Top