我正在使用julienschmidt / httprouter以及http.FileServer。
这样的事情:
func main() {
router := httprouter.New()
router.NotFound = http.FileServer(http.Dir("/srv/www/public_html"))
router.GET("/api/user/:id", getUserbyId)
log.Fatal(http.ListenAndServe(":80", router))
}
因此,如果找不到路线,只需从根目录“/”
提供但这不符合预期。在nginx中,我这样做
location / {
autoindex on;
try_files $uri $uri/ /index.html =404;
}
检查给定网址中是否有任何文件,如果没有,则给他们/index.html
如何使服务器与AngularJS html5mode兼容?
答案 0 :(得分:1)
如果找不到路线,请添加
router.GET("/", Yourfunction)
和你的功能,
func Yourfunction(res http.ResponseWriter, req *http.Request) {
file, _ := ioutil.ReadFile("/srv/www/public_html")
t := template.New("")
t, _ = t.Parse(string(file))
t.Execute(res, nil)
}