Drupal¶
.htaccess-Dateien¶
Die standardmäßig von Drupal installierte .htaccess
-Datei setzt die Option FollowSymLinks
:
# Follow symbolic links in this directory.
Options +FollowSymLinks
Diese Einstellung stellt ein Sicherheitsrisiko dar und ist deshalb auf Ihrem Webspace nicht erlaubt. Verwenden Sie statt dessen die Option SymLinksIfOwnerMatch
:
# Follow symbolic links in this directory.
Options +SymLinksIfOwnerMatch
Zusätzlich erzeugt Drupel eine .htaccess
-Datei im Verzeichnis sites/default/files/
. Ersetzen Sie auch dort FollowSymLinks
durch SymLinksIfOwnerMatch
.
Bemerkung
Mit LiveConfig v2.7.x war die Option SetHandler
ebenfalls nicht in .htaccess
-Dateien verfügbar. Seit LiveConfig 2.8 ist diese Option aber wieder erlaubt.