one more thing

This commit is contained in:
Henrique Dias
2016-07-01 15:51:02 +01:00
parent d5306b594f
commit 7ed515dba8
2 changed files with 3 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ func (f FileManager) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, err
}
if fi.IsDir && !strings.HasSuffix(r.URL.Path, "/") {
http.Redirect(w, r, r.URL.Path+"/", http.StatusTemporaryRedirect)
http.Redirect(w, r, c.AddrPath+r.URL.Path+"/", http.StatusTemporaryRedirect)
return 0, nil
}
}