From: Marek Janda Date: Mon, 2 Nov 2015 20:28:29 +0000 (+0100) Subject: Make absURL properly handle baseURL with path component X-Git-Tag: v0.16~267 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=09624708;p=brevno-suite%2Fhugo Make absURL properly handle baseURL with path component --- diff --git a/helpers/url.go b/helpers/url.go index bebcb866..749b2eea 100644 --- a/helpers/url.go +++ b/helpers/url.go @@ -151,7 +151,17 @@ func AbsURL(path string) string { if strings.HasPrefix(path, "http") || strings.HasPrefix(path, "//") { return path } - return MakePermalink(viper.GetString("BaseURL"), path).String() + + baseURL := viper.GetString("BaseURL") + if strings.HasPrefix(path, "/") { + p, err := url.Parse(baseURL) + if err != nil { + panic(err) + } + p.Path = "" + baseURL = p.String() + } + return MakePermalink(baseURL, path).String() } // RelURL creates a URL relative to the BaseURL root. diff --git a/helpers/url_test.go b/helpers/url_test.go index c484a99a..4774accb 100644 --- a/helpers/url_test.go +++ b/helpers/url_test.go @@ -53,6 +53,8 @@ func TestAbsURL(t *testing.T) { {"/test/2/foo/", "http://base", "http://base/test/2/foo/"}, {"http://abs", "http://base/", "http://abs"}, {"//schemaless", "http://base/", "//schemaless"}, + {"test/2/foo/", "http://base/path", "http://base/path/test/2/foo/"}, + {"/test/2/foo/", "http://base/path", "http://base/test/2/foo/"}, } for _, test := range tests {