<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /gaprocurementportal/

    # Serve real files/directories directly (assets, etc.)
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]

    # Everything else goes through the front controller
    RewriteRule ^ index.php [L]
</IfModule>
