fix path error at http2

This commit is contained in:
兔子 2019-09-04 16:37:03 +08:00
parent d3e6058862
commit cb997cc49c

View File

@ -171,6 +171,9 @@ func ReadFolder(w http.ResponseWriter, r *http.Request, fullpath string, isroot
if !isroot {
w.Write([]byte(fmt.Sprintf("<p><a href='%s'>%s</a> %s</p>\n", "..", "..", "上层文件夹")))
}
if r.URL.Path == "/" {
r.URL.Path = ""
}
for _, v := range dir {
if v.Name() != "." || v.Name() != ".." {
if !v.IsDir() {