하신후 먼저 자신의 웹 룻(예컨대 /var/www) 디렉토리 옵션을 인덱싱 불가(Indexes 를 -Indexes 로) 로 바꿔줍니다.
그러면 index.html 이나 index.php가 없는 /var/www/ 아래 모든 디렉토리에서 인덱스가 더이상 나타나지 않게 됩니다.
[code:jvaukqj0]<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>[/code:jvaukqj0]
을
[code:jvaukqj0]<Directory /var/www/>
Options -Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>[/code:jvaukqj0]