Files

10 lines
231 B
ApacheConf

Options -Indexes
RewriteEngine On
# Servir archivos y carpetas reales directamente
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Todo lo demás pasa por index.php raíz
RewriteRule ^ index.php [QSA,L]