fix 404
1 changed file+26−0
web-ui/public/404.htmladded+26−0View file
@@ -0,0 +1,26 @@
1+<!DOCTYPE html>
2+<html>
3+ <head>
4+ <meta charset="utf-8">
5+ <title>Zia Benchmark</title>
6+ <script>
7+ // Single Page Apps for GitHub Pages
8+ // MIT License
9+ // https://github.com/rafgraph/spa-github-pages
10+ (function(){
11+ var pathSegmentsToKeep = 1;
12+
13+ var l = window.location;
14+ l.replace(
15+ l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
16+ l.pathname.split('/').slice(0, 1 + pathSegmentsToKeep).join('/') + '/?/' +
17+ l.pathname.slice(1).split('/').slice(pathSegmentsToKeep).join('/').replace(/&/g, '~and~') +
18+ (l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
19+ l.hash
20+ );
21+ }());
22+ </script>
23+ </head>
24+ <body>
25+ </body>
26+</html>