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状态码(HTTP Status Code)的信息头用以响应浏览器的请求。
常见的状态码: 200 - 请求成功 301 - 资源(网页等)被永久转移到其他URL 404 - 请求的资源(网页等)不存在 500 - 内部服务器发生错误
1**:信息,服务器收到请求信息,需要客户端继续执行操作 2**:成功,请求被成功接收并处理 3**:重定向,需要客户端进一步的操作以完成请求,用于已移动的文件,常被包含在定位头信息中指定新的地址信息 4**:客户端错误,请求包含错误语法或无法完成请求 5**:服务器错误,服务器在处理请求的过程中发生了错误
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTTP状态码
当访问一个网页时,浏览器会向网页所在的服务器发送请求,在浏览器接受并显示网页前,服务器会返回一个包含HTTP状态码(HTTP Status Code)的信息头用以响应浏览器的请求。
常见的状态码:
200 - 请求成功
301 - 资源(网页等)被永久转移到其他URL
404 - 请求的资源(网页等)不存在
500 - 内部服务器发生错误
HTTP状态码分类
1**:信息,服务器收到请求信息,需要客户端继续执行操作
2**:成功,请求被成功接收并处理
3**:重定向,需要客户端进一步的操作以完成请求,用于已移动的文件,常被包含在定位头信息中指定新的地址信息
4**:客户端错误,请求包含错误语法或无法完成请求
5**:服务器错误,服务器在处理请求的过程中发生了错误
HTTP状态码列表
The text was updated successfully, but these errors were encountered: