.htaccess 559 B

1234567891011121314151617181920212223
  1. # Deny all requests from Apache 2.4+.
  2. Require all denied
  3. # Deny all requests from Apache 2.0-2.2.
  4. Deny from all
  5. # Turn off all options we don't need.
  6. Options -Indexes -ExecCGI -Includes -MultiViews
  7. # Set the catch-all handler to prevent scripts from being executed.
  8. SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
  9. # Override the handler again if we're run later in the evaluation list.
  10. SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
  11. # If we know how to do it safely, disable the PHP engine entirely.
  12. php_flag engine off