# Bloquear acceso público a la carpeta assets
<FilesMatch "\.(json|xml|config)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Permitir acceso solo desde localhost (servidor)
<FilesMatch "\.(json)$">
    Allow from 127.0.0.1
</FilesMatch>
Order Deny,Allow
Deny from all