From: bep Date: Sun, 19 Oct 2014 12:41:02 +0000 (+0200) Subject: Fix redirect-loop for Hugo server X-Git-Tag: v0.13~363 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8cb435f1;p=brevno-suite%2Fhugo Fix redirect-loop for Hugo server An extra slash was added to the path if baseUrl had a sub-directory, causing infinite redirect loop in Go's HTTP server. Fixes #510 --- diff --git a/commands/server.go b/commands/server.go index 921b9fbd..06f8d610 100644 --- a/commands/server.go +++ b/commands/server.go @@ -121,7 +121,7 @@ func serve(port int) { if u.Path == "" || u.Path == "/" { http.Handle("/", fileserver) } else { - http.Handle(u.Path+"/", http.StripPrefix(u.Path+"/", fileserver)) + http.Handle(u.Path, http.StripPrefix(u.Path, fileserver)) } u.Scheme = "http"