commit b831ad93326d5a544e75c1cff552fa4127201a0b Author: Jepp9350 <2jepp9350@gmail.com> Date: Mon Dec 16 08:53:16 2024 +0100 Added the .htaccess This makes sure that any paths is being resolved by the index.php file. diff --git a/.htaccess b/.htaccess new file mode 100644 index 00000000..7a3599b9 --- /dev/null +++ b/.htaccess @@ -0,0 +1,14 @@ + +# php -- BEGIN cPanel-generated handler, do not edit +# Set the “ea-php80” package as the default “PHP” programming language. + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^(.*)$ index.php [QSA,L] + + + + AddHandler application/x-httpd-ea-php80 .php .php8 .phtml + +# php -- END cPanel-generated handler, do not edit