comparison sites/default/files/.htaccess @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
1 # Turn off all options we don't need.
2 Options -Indexes -ExecCGI -Includes -MultiViews
3
4 # Set the catch-all handler to prevent scripts from being executed.
5 SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
6 <Files *>
7 # Override the handler again if we're run later in the evaluation list.
8 SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
9 </Files>
10
11 # If we know how to do it safely, disable the PHP engine entirely.
12 <IfModule mod_php5.c>
13 php_flag engine off
14 </IfModule>