UI: serve index.html if the requested file is not found in the assets bundle.

This commit is contained in:
Krishna Srinivas
2016-02-24 00:07:27 +05:30
parent 07da31f8b8
commit e509bcb2b9
2 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ func (h redirectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// '/rpc' is redirected to 'locationPrefix/rpc'
// '/login' is redirected to 'locationPrefix/login'
switch r.URL.Path {
case "/", "/rpc", "/login":
case "/", "/rpc", "/login", "/favicon.ico":
location := h.locationPrefix + r.URL.Path
// Redirect to new location.
http.Redirect(w, r, location, http.StatusTemporaryRedirect)