Added htaccess to redirect certain requests.

This commit is contained in:
WickedJack99
2025-07-29 11:27:25 +02:00
parent 330dc41682
commit 24e48ac046

10
.htaccess Normal file
View File

@@ -0,0 +1,10 @@
RewriteEngine On
# Prüfen, ob die angefragte Datei oder Ordner NICHT existieren
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Alles andere geht auf index.php
RewriteRule ^$ index.php [L]
RewriteRule ^free_cookies$ free_cookies.php [L]