RewriteEngine On

# Permitir el acceso a todos los archivos y directorios
<FilesMatch ".*">
    Order Allow,Deny
    Allow from all
</FilesMatch>

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-t
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
