Fix aliases with path in baseURL

This commit is contained in:
Helder Pereira
2020-06-17 00:05:53 +01:00
committed by Bjørn Erik Pedersen
parent 0a9172672a
commit 9679023f2b
2 changed files with 2 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ func TestAlias(t *testing.T) {
settings map[string]interface{}
}{
{"/index.html", "http://example.com", "/", map[string]interface{}{"baseURL": "http://example.com"}},
{"/index.html", "http://example.com/some/path", "/", map[string]interface{}{"baseURL": "http://example.com/some/path"}},
{"/index.html", "http://example.com", "/", map[string]interface{}{"baseURL": "http://example.com", "canonifyURLs": true}},
{"/index.html", "../..", "/", map[string]interface{}{"relativeURLs": true}},
{".html", "", ".html", map[string]interface{}{"uglyURLs": true}},