-

在接收和解释请求消息之后,服务器使用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个值:

SN 代码和说明
1 1xx:信息

这意味着请求已被收到,并且该过程正在继续。

2 2xx:成功

这意味着执行被成功收到,理解和接受。

3 3xx:重定向

这意味着必须采取进一步执行才能完成请求。

4 4xx:客户端错误

这意味着请求包含不正确的语法或无法实现。

5 5xx:服务器错误

这意味着服务器无法完成明显有效的请求。

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

响应头字段

当我们将学习HTTP头字段时,我们将在另一章中学习General-header和Entity-header。现在,我们来看看Response头域是什么。

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

您可以介绍您的自定义字段,以防您要编写自己的自定义Web客户端和服务器。

响应消息的示例

现在让我们一起来形成一个HTTP响应,用于从在vue5.com上运行的Web服务器获取hello.htm页面的请求

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>