在 HTTP 中,我知道标准的 200 响应最后有“OK”。但我似乎无法找到其他代码(如 403)是否需要 OK。
例如(来自维基百科):
HTTP/1.1 200 OK
Date: Mon, 23 May 2005 22:38:34 GMT
Server: Apache/1.3.3.7 (Unix) (Red-Hat/Linux)
Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
Etag: "3f80f-1b6-3e1cb03b"
Content-Type: text/html; charset=UTF-8
Content-Length: 131
Connection: close
<html>
<head>
<title>An Example Page</title>
</head>
<body>
Hello World, this is a very simple HTML document.
</body>
</html>
因此,在 403 响应中,它会以:
HTTP/1.1 403 OK
或者:
HTTP/1.1 403 FORBIDDEN
要不就:
HTTP/1.1 403