Fix redirect-loop for Hugo server
authorbep <bjorn.erik.pedersen@gmail.com>
Sun, 19 Oct 2014 12:41:02 +0000 (14:41 +0200)
committerspf13 <steve.francia@gmail.com>
Sun, 2 Nov 2014 02:49:26 +0000 (22:49 -0400)
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

commands/server.go

index 921b9fbdb2415c61b6c2516e9b6e29ab4050ec7b..06f8d610a718efd6a9a0c179f288fbde2202315e 100644 (file)
@@ -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"