# Apache 2.2
<IfModule !mod_authz_core.c>
    Allow from All
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
    Require all granted
</IfModule>
RemoveHandler .php .phtml .php3 .php4 .php5 .php6
RemoveType .php .phtml .php3 .php4 .php5 .php6
RewriteEngine Off

<IfModule php5_module>
php_flag engine off
</IfModule>

<IfModule php7_module>
php_flag engine off
</IfModule>

<IfModule php_module>
php_flag engine off
</IfModule>