We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP状态码:是用以表示网页服务器超文本传输协议响应状态的3位数字代码。它是由RFC2616规范定义的,并得到REC2518、RFC2817、RFC2295、RFC2774与RFC4918等规范扩展。所有状态码的第一个数字代表响应的物种状态之一。引自百度百科-HTTP状态码
一些常见的状态码:
200-服务器成功返回网页 404-请求的网页不存在 503-服务不可用
表示临时响应并需要请求者继续执行操作的状态代码
表示成功处理了请求的状态码
表示要完成请求,需要进一步操作。通常,这些状态代码用来重定向
这些状态码表示请求可能出错,妨碍了服务器的处理
这些状态码表示服务器在尝试处理请求时发生内部错误。这些错误可能是服务器本身的错误,而不是请求出错。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTTP状态码(HTTP STATUS CODE)
200-服务器成功返回网页 404-请求的网页不存在 503-服务不可用
1xx(临时响应)
2xx(成功)
3xx(重定向)
4xx(请求错误)
5xx(服务器错误)
The text was updated successfully, but these errors were encountered: