fix: htaccess + index raíz con soporte APP_BASE para subdirectorio /admin

This commit is contained in:
Lizandro Guarnizo
2026-06-04 17:50:55 -05:00
parent e984b2f255
commit 943e629120
2 changed files with 24 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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]