From 2f4e518f17099298bf49b601757133718278bc6a Mon Sep 17 00:00:00 2001 From: Gregoire Parant Date: Wed, 12 Jan 2022 08:20:54 +0100 Subject: [PATCH] HotFix Htaccess to accespt "*" Signed-off-by: Gregoire Parant --- front/dist/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/dist/.htaccess b/front/dist/.htaccess index b3bdfa2d..92ea1eec 100644 --- a/front/dist/.htaccess +++ b/front/dist/.htaccess @@ -20,7 +20,7 @@ RewriteBase / # We only want to let Apache serve files and not directories. # Rewrite all other queries starting with _ to index.ts. RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule "^[_@]/" "/index.html" [L] +RewriteRule "^[_@*]/" "/index.html" [L] RewriteRule "^register/" "/index.html" [L] RewriteRule "^login" "/index.html" [L] RewriteRule "^jwt" "/index.html" [L]