/home/techb158/workloadmatch.com
Edit: /home/techb158/workloadmatch.com/.htaccess (733B)
Options -Indexes
Options -MultiViews
DirectoryIndex index.php
AddType application/x-httpd-ea-php84 .php .php5 .phtml
RewriteEngine On
# Serve existing files and directories directly
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Let API requests pass through to api/.htaccess
RewriteRule ^api/ - [L]
# Route everything else through the front controller
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php74” package as the default “PHP” programming language.
AddHandler application/x-httpd-ea-php74 .php .php7 .phtml
# php -- END cPanel-generated handler, do not edit