# cPanel: point the domain's Document Root to this /public folder.
RewriteEngine On

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

# Everything else -> front controller
RewriteRule ^ index.php [L]
