Ensure that BaseUrl used in `hugo server` ends with `/`
authorAnthony Fok <foka@debian.org>
Fri, 16 Jan 2015 01:02:19 +0000 (18:02 -0700)
committerAnthony Fok <foka@debian.org>
Fri, 16 Jan 2015 01:02:19 +0000 (18:02 -0700)
Fixes #793, #799

commands/server.go

index 8299a291612d1ec917afabe8a309ffa4b8fdd6f0..98ea60f4e5909425b82ba87d3f8bb213b902b3e2 100644 (file)
@@ -135,6 +135,8 @@ func serve(port int) {
        }
 }
 
+// fixUrl massages the BaseUrl into a form needed for serving
+// all pages correctly.
 func fixUrl(s string) (string, error) {
        useLocalhost := false
        if s == "" {
@@ -144,6 +146,9 @@ func fixUrl(s string) (string, error) {
        if !strings.HasPrefix(s, "http://") && !strings.HasPrefix(s, "https://") {
                s = "http://" + s
        }
+       if !strings.HasSuffix(s, "/") {
+               s = s + "/"
+       }
        u, err := url.Parse(s)
        if err != nil {
                return "", err