mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 18:27:25 +03:00
Add htaccess to redirect if not found to index
If file not fount or directory not found redirect to index.html
This commit is contained in:
parent
cf4e8190a4
commit
97620cb583
1 changed files with 4 additions and 0 deletions
4
.htaccess
Normal file
4
.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