# ── Ukama Funeral Plan — root .htaccess for cPanel shared hosting ──────────────
# Routes all requests through Laravel's public/ directory.
# If your host lets you set the document root to /public, you don't need this.

<IfModule mod_rewrite.c>
    RewriteEngine On

    # Serve requests that already point inside public/ as-is
    RewriteCond %{REQUEST_URI} !^/public/
    RewriteRule ^(.*)$ public/$1 [L,QSA]
</IfModule>
