# .htaccess
# Enable URL Rewriting
RewriteEngine On

# If the request is not for a real file (like an image, css, js)
RewriteCond %{REQUEST_FILENAME} !-f
# And if the request is not for a real directory
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all requests to index.php
RewriteRule ^(.*)$ index.php [L,QSA]

# 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 .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
