Http 简明教程

HTTP - Responses

在收到并解读请求消息后,服务器会使用 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 响应消息中使用的每个实体。

Message Status-Line

状态行由协议版本后跟一个数字状态代码及其关联的文本短语组成。元素由空格 SP 字符分隔。

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

HTTP Version

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

HTTP-Version = HTTP/1.1

Status Code

状态代码元素是 3 位整数,其中状态码的第一位定义了响应的类型,而最后两位没有分类作用。第一位有 5 个值:

S.N.

Code and Description

1

*1xx:信息性*这意味着请求已被接收,且进程正在继续。

2

*2xx:成功*这意味着该操作已成功接收、理解并被接受。

3

*3xx:重定向*这意味着必须采取进一步措施才能完成请求。

4

*4xx:客户端错误*这意味着该请求包含不正确的语法或无法满足。

5

*5xx:服务器错误*这意味着服务器未能满足的一个明显有效的请求。

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

Response Header Fields

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

响应标头字段允许服务器传递有关响应的附加信息,该信息无法放在状态行中。这些标头字段提供了有关服务器的信息,以及对请求 URI 所标识的资源的进一步访问。

  1. Accept-Ranges

  2. Age

  3. ETag

  4. Location

  5. Proxy-Authenticate

  6. Retry-After

  7. Server

  8. Vary

  9. WWW-Authenticate

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

Examples of Response Message

现在,让我们将它们放在一起,以形成用于从 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>