fix path canonicalisation
Alan Pearce alan@alanpearce.eu
Wed, 24 Apr 2024 11:47:42 +0200
1 files changed, 2 insertions(+), 1 deletions(-)
jump to
M cmd/server/server.go → cmd/server/server.go
@@ -101,12 +101,13 @@ Code int } func canonicalisePath(path string) (cPath string, differs bool) { + cPath = path if strings.HasSuffix(path, "/index.html") { cPath, differs = strings.CutSuffix(path, "index.html") } else if !strings.HasSuffix(path, "/") && files[path+"/"] != (File{}) { cPath, differs = path+"/", true } - return path, differs + return cPath, differs } func serveFile(w http.ResponseWriter, r *http.Request) *HTTPError {