apache
apache
- Webserver zeigt keine Verzeichnisse und Dateien an, wenn keine index.php oder index.html existiert.
- /etc/apache2/httpd.conf
# forbid access to the entire filesystem by default
<Directory />
Options None
AllowOverride None
Order deny,allow
Deny from all
</Directory>
# allow access to the filesystem
<Directory /your path>
Options +Indexes
Order allow,deny
Allow from all
</Directory>
apache.txt · Zuletzt geändert: von 127.0.0.1
