Update: 2026-05-15 17:43:57

This commit is contained in:
Hamza-Ayed
2026-05-15 17:43:57 +03:00
parent ee2ea3a111
commit 813197c869
6 changed files with 225 additions and 12 deletions

10
public/.htaccess Normal file
View File

@@ -0,0 +1,10 @@
RewriteEngine On
# Ensure HTTPS
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Handle Clean URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?route=$1 [QSA,L]