# Uploads - Solo permitir imgenes, bloquear PHP
<FilesMatch "\.php$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Solo permitir tipos de archivo seguros
<FilesMatch "\.(?!(jpg|jpeg|png|gif|pdf)$)">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Deshabilitar ejecucin de scripts
Options -ExecCGI
RemoveHandler .php .phtml .php3 .php4 .php5 .php7 .phps
