Go语言 http 中的 request.Host 和 request.URL.Host 的区别
golang 中的例子
http 代码:
1http.ListenAndServe("localhost:9999", nil)
使用 curl
命令访问:curl http://localhost:9999/_geecache/scores/Tom
,则:
1r.Host 是 localhost:9999,
2r.URL.Host 是空字符串,
3r.URL.Path 是 /_geecache/scores/Tom。
4# 定义
5r.URL 字段是通过解析 HTTP 请求 URI 创建的。
6r.Host 字段是主机请求标头的值。它与调用 r.Header.Get("Host") 的值相同。
如果网上的HTTP请求是:
1GET /pub/WWW/TheProject.html HTTP/1.1
2Host: www.example.org:8080
3则:r.URL.Host 是空字符串,
4r.Host 是 www.example.org:8080。
解释
1r.URL.Host 和 r.Host的值几乎总是不同的。在代理服务器上,r.URL.Host 是目标服务器的主机,r.Host 是代理服务器本身的主机。当不通过代理连接时,客户端不会在请求 URI 中指定主机。在这种情况下,r.URL.Host 是空字符串。
如果未实现代理,则应使用r.Host确定主机。
发布日期:2023-05-10 19:21 字数:51 用时
标签云
alpine(1) api网关(1) async(1) await(1) centos(4) cli(1) client-go(1) debug(1) docker(10) docker-compose(1) dockerfile(1) embed(1) es6(1) etcd(1) etcdctl(1) freemesh(2) git(6) go(5) go-zeus(5) goland(2) golang(7) grafana(2) grpc(5) grpcurl(1) homebrew(1) homedir(1) http(2) hugo(1) java(2) javascript(3) job(1) js(1) json(1) k8s(16) k8s部署指南(1) kubebuilder(1) kubectl(4) kubernetes(1) linux(2) localecompare(1) lombok(1) metrics(2) mock(1) mysql(1) npm(1) nsenter(1) nvm(1) pnpm(2) pprof(1) prettier(1) prometheus(2) protobuf3(1) protoc(1) qiankun(1) request(1) scss(1) servicemesh(1) spring(1) springcloud->freemesh(1) ssh(2) systemctl(1) tcpdump(1) typescript(2) vite(2) vscode(2) vue(8) vue-admin(2) vue3(1) webssh(1) xtermjs(1) xxl-job(1) yarn(1) zookeeper(1) 云原生(4) 云原生框架(1) 介绍(1) 单体架构->freemesh(1) 单元化(1) 博客(1) 压缩(1) 可观测(1) 后台管理系统(1) 命名规范(1) 多云多活(1) 如水网(1) 安全(1) 安装(1) 容器(2) 开发联调神器(1) 微前端(1) 微服务(2) 微服务架构->freemesh(1) 微服务框架(1) 快速开始(1) 控制面(1) 数据面(1) 文集(2) 服务发现(1) 服务网格(1) 流量泳道(1) 流量管理(1) 监控告警(1) 端口映射(1) 证书(1) 负载均衡(1) 配置(1)