Dev #26

Merged
OpzekerIT merged 15 commits from dev into main 2023-09-26 19:12:28 +00:00
Showing only changes of commit e5a138157b - Show all commits

8
.htaccess Normal file
View file

@ -0,0 +1,8 @@
RewriteEngine On
# Check if not an existing directory
RewriteCond %{REQUEST_FILENAME} !-d
# Check if appending .php points to an existing file
RewriteCond %{REQUEST_FILENAME}\.php -f
# Rewrite the neat URL to its .php counterpart
RewriteRule ^(.*)$ $1.php [L]