Options -Indexes
RewriteEngine On

# ── 1. Dejar pasar archivos y carpetas reales ─────────────────────────────────
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

# ── 2. Backend: las llamadas a /ctrlcombustible/backend/ las maneja su propio
#       index.php + .htaccess, no interferir ───────────────────────────────────
RewriteRule ^ctrlcombustible/backend/ - [L]

# ── 3. Frontend SPA: cualquier ruta bajo /ctrlcombustible/ que no sea un archivo
#       real se redirige al index.html del frontend (React Router) ─────────────
RewriteRule ^ctrlcombustible(/.*)?$ /ctrlcombustible/frontend/index.html [L]
