HTTP - 响应



服务器在接收和解释请求消息后,会返回一个 HTTP 响应消息。

  • A Status-line
  • Zero or more header (General|Response|Entity) fields followed by CRLF
  • An empty line (i.e., a line with nothing preceding the CRLF) indicating the end of the header fields
  • Optionally a message-body

以下部分解释了 HTTP 响应消息中使用的每个实体。

消息状态行

状态行由协议版本、数字状态码及其关联的文本短语组成。这些元素之间用空格 (SP) 字符分隔。

Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase CRLF

HTTP 版本

支持 HTTP 1.1 版本的服务器将返回以下版本信息。

HTTP-Version = HTTP/1.1

状态码

状态码元素是一个 3 位整数,其中状态码的第一位数字定义了响应的类别,后两位数字没有任何分类作用。第一位数字有 5 个值。

序号 代码和描述
1 1xx: 信息性

表示请求已接收,并且正在处理中。

2 2xx: 成功

表示操作已成功接收、理解和接受。

3 3xx: 重定向

表示必须采取进一步操作才能完成请求。

4 4xx: 客户端错误

表示请求包含语法错误或无法完成。

5 5xx: 服务器错误

表示服务器未能完成一个明显有效的请求。

HTTP 状态码是可扩展的,HTTP 应用程序不需要理解所有已注册状态码的含义。所有状态码的列表已在单独的章节中列出,供您参考。

响应报头字段

我们将在学习 HTTP 报头字段的单独章节中学习通用报头和实体报头。现在,让我们检查一下响应报头字段是什么。

响应报头字段允许服务器传递有关响应的附加信息,这些信息不能放在状态行中。这些报头字段提供有关服务器以及对 Request-URI 标识的资源的进一步访问的信息。

  • Accept-Ranges

  • Age

  • ETag

  • Location

  • Proxy-Authenticate

  • Retry-After

  • Server

  • Vary

  • WWW-Authenticate

如果您要编写自己的自定义 Web 客户端和服务器,则可以引入自定义字段。

响应消息示例

现在让我们将所有内容组合在一起,为从 tutorialspoint.com 上运行的 Web 服务器获取 **hello.htm** 页面的请求形成 HTTP 响应。

HTTP/1.1 200 OK
Date: Mon, 27 Jul 2009 12:28:53 GMT
Server: Apache/2.2.14 (Win32)
Last-Modified: Wed, 22 Jul 2009 19:15:56 GMT
Content-Length: 88
Content-Type: text/html
Connection: Closed
<html>
<body>
<h1>Hello, World!</h1>
</body>
</html>

以下示例显示了一个 HTTP 响应消息,该消息显示当 Web 服务器找不到请求的页面时的错误情况。

HTTP/1.1 404 Not Found
Date: Sun, 18 Oct 2012 10:36:20 GMT
Server: Apache/2.2.14 (Win32)
Content-Length: 230
Connection: Closed
Content-Type: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
   <title>404 Not Found</title>
</head>
<body>
   <h1>Not Found</h1>
   <p>The requested URL /t.html was not found on this server.</p>
</body>
</html>

以下是 HTTP 响应消息的示例,该消息显示当 Web 服务器在给定的 HTTP 请求中遇到错误的 HTTP 版本时的错误情况。

HTTP/1.1 400 Bad Request
Date: Sun, 18 Oct 2012 10:36:20 GMT
Server: Apache/2.2.14 (Win32)
Content-Length: 230
Content-Type: text/html; charset=iso-8859-1
Connection: Closed
  
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
   <title>400 Bad Request</title>
</head>
<body>
   <h1>Bad Request</h1>
   <p>Your browser sent a request that this server could not understand.</p>
   <p>The request line contained invalid characters following the protocol string.</p>
</body>
</html>
广告