mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-15 20:44:01 +02:00
@@ -80,7 +80,7 @@ func TestAliasMultipleOutputFormats(t *testing.T) {
|
||||
|
||||
// the alias redirectors
|
||||
b.AssertFileContent("public/foo/bar/index.html", "<meta http-equiv=\"refresh\" content=\"0; ")
|
||||
b.AssertFileContent("public/foo/bar/amp/index.html", "<meta http-equiv=\"refresh\" content=\"0; ")
|
||||
b.AssertFileContent("public/amp/foo/bar/index.html", "<meta http-equiv=\"refresh\" content=\"0; ")
|
||||
assert.False(b.CheckExists("public/foo/bar/index.json"))
|
||||
}
|
||||
|
||||
|
@@ -305,7 +305,7 @@ func (s *Site) renderAliases() error {
|
||||
for _, a := range p.Aliases() {
|
||||
if f.Path != "" {
|
||||
// Make sure AMP and similar doesn't clash with regular aliases.
|
||||
a = path.Join(a, f.Path)
|
||||
a = path.Join(f.Path, a)
|
||||
}
|
||||
|
||||
lang := p.Language().Lang
|
||||
|
Reference in New Issue
Block a user