Benutzer-Werkzeuge

Webseiten-Werkzeuge


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: 2008/10/13 21:18 (Externe Bearbeitung)