英文:
Serve HTML with gorilla mux
问题
我有一个需要首页的 Golang 应用程序。我在尝试让它提供一个简单的 HTML 文件时遇到了困难。在本地,我可以这样做:
router.PathPrefix("/").Handler(http.FileServer(http.Dir("./views/")))
这在 Windows 和 Pop OS 上对我有效,但是当我将其部署到我的 AWS 上的 Ubuntu 服务器时,它显示 404 找不到。
英文:
I have a golang app that needs a homepage. I'm struggling to get it to serve a simple html file. I'm able to do it locally like this:
router.PathPrefix("/").Handler(http.FileServer(http.Dir("./views/")))
This works for me on Windows and Pop OS, however, when I deploy this to my ubuntu server on AWS, it says 404 not found.
答案1
得分: 1
在Ubuntu上使用完整的地址,例如http.dir(/root/workpath/yourgofolder/projectfolder/。
英文:
On ubuntu use full adress like http.dir(/root/workpath/yourgofolder/projectfolder/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论