Drupal¶
.htaccess Files¶
The default .htaccess
file from Drupal sets the option FollowSymLinks
:
# Follow symbolic links in this directory.
Options +FollowSymLinks
This setting is a security risk and thus now allowed on your webspace. Use the option SymLinksIfOwnerMatch
instead:
# Follow symbolic links in this directory.
Options +SymLinksIfOwnerMatch
Drupal additionally creates a .htaccess
file at sites/default/files/
. Replace FollowSymLinks
with SymLinksIfOwnerMatch
also there.
Note
With LiveConfig v2.7.x also the option SetHandler
was not available in .htaccess
files. Since LiveConfig 2.8 this option is available again.