mirror of
https://github.com/adams549659584/go-proxy-bingai.git
synced 2025-06-03 15:02:30 +08:00
16 lines
448 B
Go
16 lines
448 B
Go
package api
|
|
|
|
import (
|
|
"adams549659584/go-proxy-bingai/common"
|
|
"adams549659584/go-proxy-bingai/web"
|
|
"net/http"
|
|
)
|
|
|
|
func WebStatic(w http.ResponseWriter, r *http.Request) {
|
|
if _, ok := web.WEB_PATH_MAP[r.URL.Path]; ok || r.URL.Path == common.PROXY_WEB_PREFIX_PATH {
|
|
http.StripPrefix(common.PROXY_WEB_PREFIX_PATH, http.FileServer(web.GetWebFS())).ServeHTTP(w, r)
|
|
} else {
|
|
common.NewSingleHostReverseProxy(common.BING_URL).ServeHTTP(w, r)
|
|
}
|
|
}
|