Directory Listing deaktivieren
Global über Apache-Config:
/etc/apache2/apache2.conf
Änderung:
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
in
<Directory /var/www/>
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
Alternativ über .httaccess:
Eintrag:
Options -Indexes
Anschließend: service apache2 restart