Advertisement
What's the name of the attribute inside of httpd.conf that would disable directory listing when there is no index.html page? Did it change from Apache 1.3 to Apache 2.0?
Advertisement
Advertisement
-
Unsu...
Re: Directory Listing
Thu, September 25, 2003 - 2:06 PMIn the options directive, under the directory container for your dir you want to protect from being seenremove 'Indexes' from 'Options Indexes Whatever Whatever'
Restart the server. Your directory should not show an autoindex for that directory.
I'm not sure if the following bracketed text will show here, but it might look like this:
Options [Indexes removed] FollowSymLinks Multiviews
AllowOverride None
Order deny,allow
Deny from all -
-
Unsu...
Re: Directory Listing
Thu, September 25, 2003 - 2:08 PMYeah the bracketed text was hidden in both examples above. Anyway look for the (bracket)Directory(Endbracket) container, or create one for the dir you want to prottect and set the options mentioned above.
-