#--- Verzeichnis-Browsing verhindern: ------------
Options -Indexes
DirectoryIndex index.php

#--- http-Zugriffe auf *.inc verhindern: ---------
<IfModule !authz_core_module>
    order deny,allow
    <FilesMatch "\.inc">
        deny from all
    </FilesMatch>
</IfModule>
<IfModule authz_core_module>
    <FilesMatch "\.inc">
        Require all denied
    </FilesMatch>
</IfModule>