From 1038deded0eba02f012c398c7acf0e6f524e4519 Mon Sep 17 00:00:00 2001 From: Johannes Kantz <67144859+JohannesKantz@users.noreply.github.com> Date: Thu, 8 Dec 2022 18:01:23 +0100 Subject: [PATCH] fix: redirect everything to index.php --- .htaccess | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index a589ab5..4444ee4 100644 --- a/.htaccess +++ b/.htaccess @@ -1 +1,5 @@ -FallbackResource /DirektiveDesDons/index.php \ No newline at end of file +# Redirect everything to index.php +RewriteEngine on +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^.*$ /DirektiveDesDons/index.php [L,QSA] \ No newline at end of file