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.
{"/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 {