# <IfModule mod_rewrite.c>
#     Options -Multiviews
#     RewriteEngine On
    
#     # Set base directory
#     RewriteBase /malabar/public
    
#     # If file/directory exists, serve it directly
#     RewriteCond %{REQUEST_FILENAME} !-d
#     RewriteCond %{REQUEST_FILENAME} !-f
    
#     # Otherwise, route to index.php
#     RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
# </IfModule>
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /malabar/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
