发布时间:2024-11-05 19:38:35
mkdir mywebsite
cd mywebsite
go mod init github.com/yourusername/mywebsite
这将创建一个名为mywebsite的项目,并初始化一个新的go.mod文件。
package main
import (
"fmt"
"net/http"
)
func handleHome(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Welcome to my website!
")
}
func main() {
http.HandleFunc("/", handleHome)
http.ListenAndServe(":8080", nil)
}
这个简单的程序创建了一个handleHome函数,用于处理根路径的请求。在main函数中,我们将这个函数绑定到根路径上,并使用http.ListenAndServe函数来监听8080端口。
go run main.go
然后,打开浏览器,输入http://localhost:8080,就可以看到我们的网站已经成功运行起来了!
About
About Us
Welcome to our website!
然后,我们需要修改main.go文件,添加一个新的处理函数handleAbout,用于处理/about路径的请求:
func handleAbout(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "pages/about.html")
}
接下来,在main函数中将handleAbout绑定到/about路径上:
http.HandleFunc("/about", handleAbout)
重新运行网站,然后访问http://localhost:8080/about,即可看到关于页面的内容!