Apache показывает содержимое директорий.
Сразу говорю, что мануалы прочитал. Так чёрным по белому написано про Indexes:
Indexes
If a URL which maps to a directory is requested, and there is no DirectoryIndex (e.g., index.html) in that directory, then mod_autoindex will return a formatted listing of the directory.
Поэтому я добавил строчку про Indexes и в httpd.conf задал DirectoryIndex:
<Directory />
DirectoryIndex index.html index.php
Options -Indexes
AllowOverride None
Order deny,allow
Deny from all
</Directory>
Но Апач всё равно продолжает выдавать листинг содержимого директорий! Почему? Что не так я делаю?
Спасибо.