GoLang 实现一个最简单的http文件服务器

PolluxLee ·
http.Handle("/", http.FileServer(http.Dir("file")))
#3
更多评论
不要 pollux 子路径怎么写?
#1
http.Handle("/", http.StripPrefix("/", http.FileServer(http.Dir("/your/path"))))
#2