mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 02:37:22 +03:00
97620cb583
If file not fount or directory not found redirect to index.html
4 lines
122 B
ApacheConf
4 lines
122 B
ApacheConf
RewriteEngine on
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^.*$ /index.html [L]
|