图解http协议状态码

图解http协议状态码

  • 概览
  • 2XX 成功
    • 200 OK
    • 204 Not Content
    • 206 Partial Content
  • 3XX重定向
    • 301 Moved Permanently
    • 302 Found
    • 303 See Other
    • 304 Not Modified
  • 4XX客户端错误
    • 400 Bad Request
    • 403 Forbidden
    • 404 Not Found
  • 5XX 服务器错误
    • 500 Internal Server Error
    • 503 Service Unavailable

概览

状态码的职责是当客户端向服务器端发送请求时,描述返回的请求结果,借助状态码,用户可以知道服务端是正常处理了请求,还是出现了错误。

状态响应码的类别:
图解http协议状态码_第1张图片
常见的状态码大概只有十几种,下面借助画图来记忆这些常见状态码的含义:

2XX 成功

200 OK

图解http协议状态码_第2张图片

204 Not Content

图解http协议状态码_第3张图片
图解http协议状态码_第4张图片

206 Partial Content

图解http协议状态码_第5张图片

3XX重定向

3XX响应结果表明浏览器需要执行某些特殊的处理以正确的处理请求

301 Moved Permanently

图解http协议状态码_第6张图片

302 Found

图解http协议状态码_第7张图片

303 See Other

图解http协议状态码_第8张图片

304 Not Modified

图解http协议状态码_第9张图片

4XX客户端错误

400 Bad Request

图解http协议状态码_第10张图片## 401 Unauthorized

图解http协议状态码_第11张图片
图解http协议状态码_第12张图片

403 Forbidden

图解http协议状态码_第13张图片

404 Not Found

图解http协议状态码_第14张图片

5XX 服务器错误

5XX的响应结果表明服务器本身发生错误

500 Internal Server Error

图解http协议状态码_第15张图片

503 Service Unavailable

图解http协议状态码_第16张图片
图解http协议状态码_第17张图片

你可能感兴趣的:(#,网络相关)