咨询个GO WEB的 404错误页面

hellsam · · 3541 次点击
更多评论
`/` 会匹配所有的路由。可以在 index 中加上判断: ```go if r.URL.Path != "/" { http.NotFoundHandler().ServeHTTP(w, r) return } ``` 或者使用 https://github.com/gorilla/mux 这样的路由
#2