其他分享
首页 > 其他分享> > Go语言实现简单的一个静态WEB服务器

Go语言实现简单的一个静态WEB服务器

作者:互联网

https://www.cnblogs.com/pu369/p/5899198.html

package main

import (
    "net/http"
)

func main() {
    http.Handle("/", http.FileServer(http.Dir("./www/")))
    http.ListenAndServe(":8123", nil)
}

在生成的EXE文件所在目录中创建www子目录,在该目录中放web静态文件。

以上是静态文件使用http.FileServer,那么动态文件则用http.HandleFunc

标签:WEB,www,http,文件,静态,FileServer,Go,服务器,main
来源: https://www.cnblogs.com/sui84/p/11273290.html