From 6824013e1bcea57d2cce550f253f79ff5a43e2b6 Mon Sep 17 00:00:00 2001 From: Flycro Date: Sun, 9 Jan 2022 16:33:18 +0100 Subject: [PATCH] Add .htaccess File --- public/.htaccess | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..b0e00a1 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,8 @@ + + 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