From 93273a92668154cc5b417889984632597c03d05c Mon Sep 17 00:00:00 2001 From: David H Date: Sun, 16 Mar 2025 21:32:07 +0100 Subject: [PATCH] =?UTF-8?q?htaccess=20standard=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/.htaccess | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..3fa8a40 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,11 @@ + + + RewriteEngine On + RewriteBase / + RewriteRule ^index\.html$ - [L] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-l + RewriteRule . /index.html [L] + +