mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-03 14:57:22 +03:00
Add htaccess to redirect if not found to index
If (file not found or directory not found) then > redirect to index.html
This commit is contained in:
parent
aec3de18aa
commit
cefd6ec752
1 changed files with 4 additions and 0 deletions
4
public/.htaccess
Normal file
4
public/.htaccess
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
RewriteEngine on
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteRule ^.*$ /index.html [L]
|
Loading…
Reference in a new issue