标签: http express go routes
在快递中,你可以通过这样做来处理任何路线
app.get('/*', dosomething..)
我已经尝试过这样做,但它似乎没有工作
http.Handle("/*", http.FileServer(http.Dir("../client/dist")))
答案 0 :(得分:1)
如果您仔细阅读http.ServeMux的文档,则斜杠/会匹配所有路线。
/
简单地写道:
http.Handle(“/“, MyHandler)