为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 http 包处理 URL 之前重写 URL

如何在 http 包处理 URL 之前重写 URL

Go
弑天下 2021-12-07 16:38:17
使用 node/express 可以做这样的事情app.use(rewrite('/*', '/index.html'));go 中的等价物是什么?我试过使用 httputil.ReverseProxy,但这似乎完全不切实际。
查看完整描述

1 回答

?
慕桂英3389331

TA贡献2036条经验 获得超8个赞

对于一个简单的“一网打尽”,你可以做


http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {

    http.ServeFile(w, r, "index.html")

})

“/”模式匹配所有内容。


对于更复杂的模式,您需要使用重写 url 的处理程序包装您的多路复用器。


// register your handlers on a new mux

mux := http.NewServeMux()

mux.HandleFunc("/path", func(w http.ResponseWriter, r *http.Request) {

    // your handler code

})


...


rewrite := func(path string) string {

   // your rewrite code, returns the new path

}


...


// rewrite URL.Path in here before calling mux.ServeHTTP

http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {

    r.URL.Path = rewrite(r.URL.Path) 

    mux.ServeHTTP(w,r)

})


查看完整回答
反对 回复 2021-12-07
  • 1 回答
  • 0 关注
  • 178 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信