Golang css 服务

我希望你不要觉得我的问题很愚蠢,但我真的找不到答案。

我正在尝试提供我的 style.css 文件,但它不起作用。

这是项目的结构: 

http://img.mukewang.com/62a6e85c0001e2bb01720296.jpg

在css文件中我有:“link href="style.css" rel="stylesheet" type="text/css"/"

在 mainn.go 我正在尝试使用以下方法提供 css 文件: router.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir("/hpages")) ))

任何帮助将不胜感激。谢谢!


慕桂英546537
浏览 127回答 1
1回答

繁花不似锦

/hpages是绝对路径。也许试试吧./hpages。以下程序在我的本地机器上运行:package mainimport (  "log"  "net/http")func main() {  router := http.NewServeMux()  router.Handle("/css/", http.StripPrefix("/css/",                http.FileServer(http.Dir("./hpages"))))  log.Fatal(http.ListenAndServe(":5000", router))}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go