.htaccess 487 B

1234567891011121314
  1. # Turn off all options we don't need.
  2. Options -Indexes -ExecCGI -Includes -MultiViews
  3. # Set the catch-all handler to prevent scripts from being executed.
  4. SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
  5. <Files *>
  6. # Override the handler again if we're run later in the evaluation list.
  7. SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
  8. </Files>
  9. # If we know how to do it safely, disable the PHP engine entirely.
  10. <IfModule mod_php7.c>
  11. php_flag engine off
  12. </IfModule>