2015 计算机网络 连接方式 选择题
第 40 题

某浏览器发出的 HTTP 请求报文如下( )。

GET /index .html HTTP/1.1
Host: www.test.edu.cn
Connection: close
Cookie: 123456

下列叙述中,错误的是

HTTP

A. 该浏览器请求浏览 index.html B. index.html 存放在 www.test.edu.cn 上 C. 该浏览器请求使用持续连接 D. 该浏览器曾经浏览过 www.test.edu.cn

[tag_link] 正确答案:C Connection 字段代表 连接方式 ,Close 表明为非持续连接方式,keep-alive 表示持续连接方式。Cookie 值是由服务器产生的,HTTP 请求报文中有 Cookie 报头表示曾经访问过 www.test.edu.cn 服务器。