“example.com”在GET请求中引用了什么?

时间:2016-07-08 04:35:43

标签: html http get f5

“example.com”在GET请求中引用了什么,例如此F5运行状况监视器示例:

GET /somefolder HTTP/1.1\r\nHost: www.example.com\r\nConnection: Close\r\n\r\n

GET / [uri path]
HTTP/1.1 [http encoding]
[Carriage Return/LineFeed]
Host: [required for http 1.1 to specify the next part]
www.example.com  <**?????**>
Connection: Close [command to end query request]
[CR/LF/CR/LF]

2 个答案:

答案 0 :(得分:0)

  

www.example.com是主机名。

Host头机制的目的,特别是强制其在HTTP / 1.1请求中存在的要求,是为了加快从为每个虚URL分配新IP地址的过渡。

参考:Key Differences between HTTP/1.0 and HTTP/1.1

答案 1 :(得分:0)

简单地说,它说的是请求所针对的域。您要求路径为/,但单个服务器可能会为数百个域提供服务,因此需要知道您想要的 /