feat: add .htaccess

This commit is contained in:
Sebin Nyshkim 2023-01-18 16:58:33 +01:00
parent 82d6d68d25
commit 5b16aae03c

8
public/.htaccess Normal file
View file

@ -0,0 +1,8 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /viktor/index.html [L]
</IfModule>