mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-09 01:37:24 +03:00
cefd6ec752
If (file not found or directory not found) then > 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]
|