From d6e6a33a67651849c8a7d273202c596df75fffaa Mon Sep 17 00:00:00 2001 From: jmart Date: Wed, 11 Sep 2024 16:04:31 +0200 Subject: [PATCH] rework htaccess file --- public/.htaccess | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/public/.htaccess b/public/.htaccess index 40979b4..8a83d7b 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -1,6 +1,12 @@ -RewriteEngine On -RewriteBase / -RewriteRule ^index\.html$ - [L] -RewriteCond %{REQUEST_FILENAME} !-f -RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule . /index.html [L] \ No newline at end of file + + Options -MultiViews + + + + RewriteEngine On + RewriteBase / + RewriteRule ^index\.html$ - [L] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule . /index.html [L] + \ No newline at end of file