From 63348f89b91be58eebc53c0ecd9e2ab0727f2e88 Mon Sep 17 00:00:00 2001 From: Florian Eisenmenger Date: Wed, 20 Nov 2024 12:15:52 +0100 Subject: [PATCH] htaccess --- matsen-tool/.htaccess | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/matsen-tool/.htaccess b/matsen-tool/.htaccess index e69de29..dfaebeb 100644 --- a/matsen-tool/.htaccess +++ b/matsen-tool/.htaccess @@ -0,0 +1,10 @@ + + RewriteEngine On + RewriteBase / + + # Falls die Datei/Verzeichnis nicht existiert, + # leite alle Anfragen zur index.html um + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^ index.html [L] + \ No newline at end of file