初学者围棋问题
我有这个目录结构。
app_executable
html
|
- index.html
data
|
- static_file.json
我无法让它为static_file.jsonin服务data/static_file.json。
func main() {
// this works and serves html/index.html
html := http.FileServer(http.Dir("html"))
http.Handle("/", html)
// this always 404's
data := http.FileServer(http.Dir("data"))
http.Handle("/data/", data)
fmt.Println("Listening on port " + port + "...")
log.Fatal(http.ListenAndServe(port, nil))
}
任何帮助表示赞赏!
Smart猫小萌
相关分类