# Route all app/ requests back to the root index.php
# This prevents LiteSpeed from showing directory listing inside app/
RewriteEngine On
RewriteBase /gmind/app/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ ../index.php?route=app/$1 [QSA,L]
