# Bloqueia execução de scripts PHP, PHTML, etc.
<FilesMatch "\.(php|phtml|php3|php4|php5|phps)$">
    Order Deny,Allow
    Deny from all
</FilesMatch>

# Remove handlers que tentem processar arquivos PHP
RemoveHandler .php .phtml .php3 .php4 .php5 .phps

# Impede listagem de diretório
Options -Indexes

# Desativa execução de scripts
php_flag engine off
