# Defense-in-depth: uploaded files must never be executable, even if a
# script slips past MIME validation (e.g. a polyglot image).
<IfModule mod_php.c>
    php_flag engine off
</IfModule>
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|phar|pl|py|jsp|asp|sh|cgi)$">
    Require all denied
</FilesMatch>
Options -ExecCGI
AddHandler cgi-script .php .phtml .php3 .php4 .php5 .php7 .phar .pl .py .jsp .asp .sh .cgi
