欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTTP状态码以及其含义大全

程序员文章站 2023-11-09 21:59:40
HTTP状态码(英语:HTTP Status Code)是用以表示网页服务器超文本传输协议响应状态的3位数字代码。我们在开发过程中比较常见的状态码有:200(请求成功)、301(页面重定向)、404(未找到对应的资源文件)、500(服务器错误)。此文参考相关资料后,将HTTP状态码归类汇总,详细列出 ......

http状态码(英语:http status code)是用以表示网页服务器超文本传输协议响应状态的3位数字代码。我们在开发过程中比较常见的状态码有:200(请求成功)、301(页面重定向)、404(未找到对应的资源文件)、500(服务器错误)。此文参考相关资料后,将http状态码归类汇总,详细列出,相关状态码及其含义参考以下内容。

http状态码大全如下:

"100" : continue 
"101" : witching protocols 
"200" : ok "201" : created "202" : accepted "203" : non-authoritative information "204" : no content "205" : reset content "206" : partial content
"300" : multiple choices "301" : moved permanently "302" : found "303" : see other "304" : not modified "305" : use proxy "307" : temporary 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 time-out "409" : conflict "410" : gone "411" : length required "412" : precondition failed "413" : request entity too large "414" : request-uri too large "415" : unsupported media type "416" : requested range not satisfiable "417" : expectation failed
"500" : internal server error "501" : not implemented "502" : bad gateway "503" : service unavailable "504" : gateway time-out "505" : http version not supported
http 400 - 请求无效 http 401.1 - 未授权:登录失败 http 401.2 - 未授权:服务器配置问题导致登录失败 http 401.3 - acl 禁止访问资源 http 401.4 - 未授权:授权被筛选器拒绝 http 401.5 - 未授权:isapi 或 cgi 授权失败 http 403 - 禁止访问 http 403 - 对 internet 服务管理器 (html) 的访问仅限于 localhost http 403.1 禁止访问:禁止可执行访问 http 403.2 - 禁止访问:禁止读访问 http 403.3 - 禁止访问:禁止写访问 http 403.4 - 禁止访问:要求 ssl http 403.5 - 禁止访问:要求 ssl 128 http 403.6 - 禁止访问:ip 地址被拒绝 http 403.7 - 禁止访问:要求客户证书 http 403.8 - 禁止访问:禁止站点访问 http 403.9 - 禁止访问:连接的用户过多 http 403.10 - 禁止访问:配置无效 http 403.11 - 禁止访问:密码更改 http 403.12 - 禁止访问:映射器拒绝访问 http 403.13 - 禁止访问:客户证书已被吊销 http 403.15 - 禁止访问:客户访问许可过多 http 403.16 - 禁止访问:客户证书不可信或者无效 http 403.17 - 禁止访问:客户证书已经到期或者尚未生效 http 404.1 - 无法找到 web 站点 http 404 - 无法找到文件 http 405 - 资源被禁止 http 406 - 无法接受 http 407 - 要求代理身份验证 http 410 - 永远不可用 http 412 - 先决条件失败 http 414 - 请求 - uri 太长 http 500 - 内部服务器错误 http 500.100 - 内部服务器错误 - asp 错误 http 500-11 服务器关闭 http 500-12 应用程序重新启动 http 500-13 - 服务器太忙 http 500-14 - 应用程序无效 http 500-15 - 不允许请求 global.asa error 501 - 未实现 http 502 - 网关错误

 

备注:此文章转载自 http状态码以及其含义大全_it技术小趣屋