1. proxy转发

反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。

  1. package main
  2. import (
  3. "fmt"
  4. "net/http"
  5. "net/http/httputil"
  6. "net/url"
  7. )
  8. func sayHello(w http.ResponseWriter, r *http.Request) {
  9. u, _ := url.Parse("http://127.0.0.1:9091/")
  10. proxy := httputil.NewSingleHostReverseProxy(u)
  11. proxy.ServeHTTP(w, r)
  12. }
  13. func main() {
  14. http.HandleFunc("/topgoer", sayHello)
  15. err := http.ListenAndServe(":9090", nil)
  16. if err != nil {
  17. fmt.Println("HTTP server failed,err:", err)
  18. return
  19. }
  20. }
  1. package main
  2. import (
  3. "fmt"
  4. "net/http"
  5. )
  6. func sayHello(w http.ResponseWriter, r *http.Request) {
  7. fmt.Println("topgoer.com是个不错的网站我是9091里面的")
  8. }
  9. func main() {
  10. http.HandleFunc("/topgoer", sayHello)
  11. err := http.ListenAndServe(":9091", nil)
  12. if err != nil {
  13. fmt.Println("HTTP server failed,err:", err)
  14. return
  15. }
  16. }

访问http://localhost:9090/5lmh实际执行的是http://localhost:9091/5lmh的方法