# Minimal .htaccess – safe for shared hosting
# Do NOT redirect to /public; all entry points are file-based (index.php, api/router.php, etc).

<IfModule mod_mime.c>
  AddDefaultCharset utf-8
</IfModule>

# Optional: compression (safe)
<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/plain text/css application/javascript application/json
</IfModule>

DirectoryIndex index.php
