From 781758f0a58d23db0a411f69ef412e6c4e92ade1 Mon Sep 17 00:00:00 2001 From: pepper Date: Sun, 17 Jan 2021 19:55:21 -0500 Subject: [PATCH] Added default .htaccess --- public/.htaccess | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..537e0f1 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,11 @@ + + + RewriteEngine On + RewriteBase / + RewriteRule ^index\.html$ - [L] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-l + RewriteRule . /index.html [L] + + \ No newline at end of file