<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Crash static assets now live in laravel/public — serve transparently.
    # Keeps old URLs (/single/css/..., /single/js/...) working without copies.
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*/)?(css|js|user|images|fonts|vendor|aviatoradmin|socket\.io|unpkg\.com)/(.+)$ laravel/public/$2/$3 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*/)?(background.*\.mp3|cashout.*\.mp3|game-start\.mp3|plane-crash.*\.mp3|loading\.gif|favicon\.ico|robots\.txt)$ laravel/public/$2 [L]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Send Requests To Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php81” package as the default “PHP” programming language.
<IfModule mime_module>
  AddHandler application/x-httpd-ea-php81___lsphp .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
