Added htaccess to redirect certain requests.
This commit is contained in:
10
.htaccess
Normal file
10
.htaccess
Normal 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]
|
||||
Reference in New Issue
Block a user