From 06d33324991f9cbf3e497e1b38217ba5f68e0ef0 Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Thu, 5 May 2022 07:33:12 +0200 Subject: [PATCH] Remove .htaccess as it's no longer in use --- front/public/.htaccess | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 front/public/.htaccess diff --git a/front/public/.htaccess b/front/public/.htaccess deleted file mode 100644 index 92ea1eec..00000000 --- a/front/public/.htaccess +++ /dev/null @@ -1,26 +0,0 @@ -DirectoryIndex index.html - -# By default, Apache does not evaluate symbolic links if you did not enable this -# feature in your server configuration. Uncomment the following line if you -# install assets as symlinks or if you experience problems related to symlinks -# when compiling LESS/Sass/CoffeScript assets. -# Options FollowSymlinks - -# Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve -# to the front controller "/index.php" but be rewritten to "/index.php/index". - - Options -MultiViews - - -RewriteEngine On - -RewriteBase / - -# If the requested filename exists, simply serve it. -# 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 "^register/" "/index.html" [L] -RewriteRule "^login" "/index.html" [L] -RewriteRule "^jwt" "/index.html" [L]