我查看了所有类似的问题并按照那里所说的那样连接了文件,但尽管如此,该文件还是不起作用。我不知道该怎么办,我做错了什么
主程序
func main() {
r := mux.NewRouter()
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./static/"))))
r.HandleFunc("/index", index)
http.ListenAndServe(":8080", r)
}
func index(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "./static/html/test.html")
}
结构体
测试.html
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/static/css/test.css" />
</head>
<body class="sb-nav-fixed">
asdfasd
</body>
</html>
测试.css
body{
height: 100%;
width: 100%;
background-color: brown;
}
潇湘沐
相关分类