状态码 | 含义 | 英文 |
---|---|---|
100 | (继续) 请求者应当继续提出请求。 | continue |
101 | 服务器根据客户端的请求切换协议。只有在切换新的协议更有好处的时候才应该采取类似措施。 | switching protocols |
102 | 处理中:表示服务器已经收到请求正在处理,暂无响应可用。 | processing |
200 | 成功:请求所希望的响应头或数据体将随此响应返回 | ok |
201 | 已创建:成功请求并创建了新的资源;假如需要的资源无法及时建立的话,应当返回'202 Accepted' | created |
202 | 服务器已接受请求,但尚未处理:适合用于异步操作的场合,目的是允许服务器接受其他过程的请求 | accepted |
203 | 请求已成功:被代理服务器proxy修改后的版本(但返回的实体头部元信息不是在原始服务器上有效的确定集合,而是来自本地或者第三方的拷贝) | non-authoritative information |
204 | 没有内容: 服务器成功处理了请求,但没有返回任何内容。 | no content |
205 | 重置内容: 服务器成功处理了请求,但没有返回任何内容,同时要求客户端重置文档视图。 | reset content |
206 | 部分内容: 表示服务器已经成功处理了部分GET请求,FlashGet、迅雷等HTTP下载工具就是使用此类响应实现断点续传 | partial content |
207 | 多状态(WebDAV)。表示之后的消息体将是一个XML消息。WebDAV是一种基于HTTP1.1的通信协议。 | multi-status |
208 | 已经报告(WebDAV)。表示DAV绑定的成员已经在(多状态)响应之前被枚举,不会被再次包括。 | already reported |
226 | Instance Manipulation Used的缩写。该响应是对当前实例的一个或多个实例操作的结果表示,表示服务器已完成对资源的请求 | im used |
300 | "multiple choices" | |
301 | "moved permanently" | |
302 | "found" | |
303 | "see other" | |
304 | "not modified" | |
305 | "use proxy" | |
307 | "temporary redirect" | |
308 | "permanent redirect" | |
400 | "bad request" | |
401 | "unauthorized" | |
402 | "payment required" | |
403 | "forbidden" | |
404 | "not found" | |
405 | "method not allowed" | |
406 | "not acceptable" | |
407 | "proxy authentication required" | |
408 | "request timeout" | |
409 | "conflict" | |
410 | "gone" | |
411 | "length required" | |
412 | "precondition failed" | |
413 | "payload too large" | |
414 | "uri too long" | |
415 | "unsupported media type" | |
416 | "range not satisfiable" | |
417 | "expectation failed" | |
418 | "I'm a teapot" | |
422 | "unprocessable entity" | |
423 | "locked" | |
424 | "failed dependency" | |
426 | "upgrade required" | |
428 | "precondition required" | |
429 | "too many requests" | |
431 | "request header fields too large" | |
500 | 服务器内部错误:因此无法完成对请求的处理。 | internal server error |
501 | 没实现:表示服务器没这个功能 | not implemented |
502 | 坏网关:表示网关或代理服务器从上游服务器收到无效的响应。 | bad gateway |
503 | 服务不可用:一般是暂时的,服务器超载了或在进行系统维护。 | service unavailable |
504 | 网关超时:表示网关或代理服务器未能从上游服务器收到响应。 | gateway timeout |
505 | HTTP版本不支持:表示服务器不支持请求中使用的HTTP版本。 | http version not supported |
506 | 由《透明内容协商协议》(RFC 2295)扩展,代表服务器存在内部配置错误:被请求的协商变元资源被配置为在透明内容协商中使用自己,因此在一个协商处理中不是一个合适的重点。 | variant also negotiates |
507 | 服务器无法存储完成请求所必须的内容:这个状况被认为是临时的。WebDAV (RFC 4918) | insufficient storage" |
508 | 服务器在处理请求时陷入死循环 | loop detected |
509 | 服务器达到带宽限制:这不是一个官方的状态码,但是仍被广泛使用。 | Bandwidth Limit Exceeded |
510 | 获取资源所需要的策略并没有被满足 | not extended |
511 | 客户端需要进行身份验证才能获得网络访问权限,旨在限制用户群访问特定网络 | network authentication required |
参考文献
http状态码大全 —— 专业术语篇
http状态码速查表 —— 通俗易懂篇
HTTP协议状态码详解(HTTP Status Code)—— 常见精简状态码
HTTP状态码列表 —— 比较全的状态码
网友评论