From b7340022de8c47efc53f96cf826ab0668531e26d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Wed, 14 Oct 2020 13:29:16 +0200 Subject: [PATCH] Fixing rewriterule with @ in prod --- front/dist/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/dist/.htaccess b/front/dist/.htaccess index 53979e53..cc97cd5a 100644 --- a/front/dist/.htaccess +++ b/front/dist/.htaccess @@ -20,4 +20,4 @@ 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]