DirectoryIndex index.php

<IfModule mod_rewrite.c>
    RewriteEngine On

    # Serve real public assets directly and send API routes to the front controller.
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^ index.php [QSA,L]
</IfModule>
