<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /kohareport/  # If your project is in a subfolder; otherwise, leave as "/"
    
    # Redirect all requests to the index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
