# <IfModule mod_rewrite.c>
# RewriteEngine On
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule ^(.*)$ index.php/$1 [L]
# </IfModule>

# # php -- BEGIN cPanel-generated handler, do not edit
# # Set the “alt-php83” package as the default “PHP” programming language.
# <IfModule mime_module>
#   AddHandler application/x-httpd-alt-php83 .php .php8 .phtml
# </IfModule>
# # php -- END cPanel-generated handler, do not edit





<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
</IfModule>

# PHP 8.3
<IfModule mime_module>
  AddHandler application/x-httpd-alt-php83 .php .php8 .phtml
</IfModule>