1// Add the following to .htaccess file in the public folder
2// NOTE: This is for Apache servers!
3
4<IfModule mod_rewrite.c>
5 RewriteEngine On
6 RewriteBase /
7 RewriteRule ^index\.html$ - [L]
8 RewriteCond %{REQUEST_FILENAME} !-f
9 RewriteCond %{REQUEST_FILENAME} !-d
10 RewriteCond %{REQUEST_FILENAME} !-l
11 RewriteRule . /index.html [L]
12</IfModule>