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

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