# VotoLibre - Protección de archivos
# Denegar acceso directo a todos los archivos

Order deny,allow
Deny from all

# Solo permitir acceso desde scripts PHP internos
<FilesMatch ".*">
    Order deny,allow
    Deny from all
</FilesMatch>

# Prevenir listado de directorios
Options -Indexes

# Prevenir ejecución de scripts
<FilesMatch "\.(php|phtml|php3|php4|php5|pl|py|jsp|asp|htm|html|shtml|sh|cgi)$">
    Order deny,allow
    Deny from all
</FilesMatch>
