go搭建静态网站

go安装、下载、使用参见:菜鸟……
https://www.runoob.com/go/go-environment.html
go语言中文网:(go下载)
https://studygolang.com/dl
————————————————
静态网站代码:

//staticweb
package main
import (
    "net/http"
   )
func main() {
	http.Handle("/", http.FileServer(http.Dir("F:/")))
	http.ListenAndServe(":8080", nil)
}

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注