尝试从文件系统提供文件时出现 404

import (

    "net/http"

)


func main() {

    http.Handle("/", http.FileServer(http.Dir("static")))

    http.ListenAndServe(":8080", nil)

}

我导航到 localhost:8080/ 并收到 404 错误。我究竟做错了什么?


泛舟湖上清波郎朗
浏览 218回答 2
2回答

皈依舞

具有以下结构:main.gostatic  |- index.html并main.go包含:package mainimport (    "net/http")func main() {    http.Handle("/", http.FileServer(http.Dir("static")))    if err := http.ListenAndServe(":8080", nil); err != nil {        panic(err)    }}使用 运行您的解决方案后go run main.go,您应该能够转到localhost:8080/并最终获得index.html.如果它不起作用,也许添加的错误处理可能会有所帮助。代码是正确的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go