RewriteEngine On
RewriteBase /

# If the request is for an existing file or directory, serve it directly

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

# Otherwise, send all other requests to index.html (React entry point)

RewriteRule ^ index.html [L]

# php -- BEGIN cPanel-generated handler, do not edit

# Set the “ea-php83” package as the default “PHP” programming language.

<IfModule mime_module>
  AddHandler application/x-httpd-ea-php83 .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
