mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Fix UI loading redirections. Should fix #906
This commit is contained in:
parent
404253a881
commit
3b0defefec
3 changed files with 17 additions and 1 deletions
|
@ -61,7 +61,7 @@ func (a *Server) initRoutes() {
|
|||
r.Use(requestLogger)
|
||||
r.Use(robotsTXT(ui.Assets()))
|
||||
|
||||
indexHtml := path.Join(conf.Server.BaseURL, consts.URLPathUI, "index.html")
|
||||
indexHtml := path.Join(conf.Server.BaseURL, consts.URLPathUI)
|
||||
r.Get("/*", func(w http.ResponseWriter, r *http.Request) {
|
||||
http.Redirect(w, r, indexHtml, 302)
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue