windows下,新建文件夹D:\webserver\gowww\site
并放入一个静态网站的所有文件
新建go源文件 staticweb.go
// staticweb package main import ( "net/http" ) func main() { http.Handle("/",http.FileServer(http.Dir("D:/webserver/gowww/site/"))) http.ListenAndServe(":9090",nil) }
F5运行后, 浏览器访问http://localhost:9090
只需两行代码
go来搭建静态web服务器,就是这么简单,这么有效。