我正在学习 Go,但在使用我的服务器提供静态文件时遇到了问题。我总是得到 404。请求是为了http://localhost:3001/static/breakfast.jpg路由器+文件服务器mux := chi.NewRouter() mux.Get("/", handlers.Repo.Home)fileServer := http.FileServer(http.Dir("./static/"))mux.Handle("/static/*", http.StripPrefix("/static", fileServer))静态文件路径root/static/我的模板主页.tmpl{{template "base" .}}{{define "content"}}<div class="container"> <div class="row"> <div class="col"> <h1>Hi from home page</h1> <img src="/static/breakfast.jpg" width="1920" height="1080" alt="house" /> </div> </div></div>{{ end }}我究竟做错了什么?
- 1 回答
- 0 关注
- 117 浏览
添加回答
举报
0/150
提交
取消
