Always use relative redirect to keep the upstream domain

This commit is contained in:
2022-01-26 04:24:48 +01:00
parent 5da00eefee
commit 8f3e81fac3
2 changed files with 16 additions and 7 deletions
+5 -3
View File
@@ -1,9 +1,11 @@
package templates
const (
URLPostfix = "aspx"
URLRoot = "/"
URLIndex = "/index.aspx"
URLBlog = "/blog.aspx"
URLPost = "/post.aspx"
URLIndex = "/index." + URLPostfix
URLBlog = "/blog." + URLPostfix
URLPost = "/post." + URLPostfix
URLJSApp = "/js-bin/app.js"
)