Options -Indexes
RewriteEngine On

# ── Set base path to match install subdirectory ──
RewriteBase /projects/education/education-platform/

# Allow direct access to real files & directories (css, js, images…)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Route everything else through the front controller
RewriteRule ^ index.php [QSA,L]

