Files
Blog/.htaccess
2025-07-29 11:27:25 +02:00

10 lines
266 B
ApacheConf

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]