Merge pull request #1717 from thecodingmachine/HotFixHtaccess

HotFix htaccess to accespt "*"
This commit is contained in:
grégoire parant
2022-01-12 08:39:55 +01:00
committed by GitHub
+1 -1
View File
@@ -20,7 +20,7 @@ RewriteBase /
# We only want to let Apache serve files and not directories. # We only want to let Apache serve files and not directories.
# Rewrite all other queries starting with _ to index.ts. # Rewrite all other queries starting with _ to index.ts.
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule "^[_@]/" "/index.html" [L] RewriteRule "^[_@*]/" "/index.html" [L]
RewriteRule "^register/" "/index.html" [L] RewriteRule "^register/" "/index.html" [L]
RewriteRule "^login" "/index.html" [L] RewriteRule "^login" "/index.html" [L]
RewriteRule "^jwt" "/index.html" [L] RewriteRule "^jwt" "/index.html" [L]