首页 > Web开发 > 详细

生产环境常见的HTTP状态码列表

时间:2014-12-31 06:25:48      阅读:392      评论:0      收藏:0      [点我收藏+]

生产环境常见的HTTP状态码列表

 

200 - OK,服务器成功返回网页 
    - Standard response for successful HTTP requests.

301 - Moved Permanently(永久跳转),请求的网页已永久跳转到新位置。
    - This and all future requests should be directed to thegiven.

403 - Forbidden(禁止访问),服务器拒绝请求
    - forbidden request (matches a deny filter) => HTTP 403
    - The request was a legal request, but the server isrefusing to respond to it.

404 - Not Found,服务器找不到请求的页面。
    - The requested resource could not be found but may beavailable again in the future.

500 - Internal Server Error(内部服务器错误)
    - internal error in haproxy => HTTP 500
    - A generic error message, given when no more specificmessage is suitable.

502 - Bad Gateway(坏的网关),一般是网关服务器请求后端服务时,后端服务没有按照http协议正确返回结果。
    - the server returned an invalid or incomplete response=> HTTP 502
    - The server was acting as a gateway or proxy and receivedan invalid response from the upstream server.

503 - Service Unavailable(服务当前不可用),可能因为超载或停机维护。
    - no server was available to handle the request => HTTP503
    - The server is currently unavailable (because it isoverloaded or down for maintenance).

504 - Gateway Timeout(网关超时),一般是网关服务器请求后端服务时,后端服务没有在特定的时间内完成服务。
    - the server failed to reply in time => HTTP 504
    - The server was acting as a gateway or proxy and did notreceive a timely response from the upstream server.

 


本文出自 “Study-Everyday” 博客,请务必保留此出处http://studys.blog.51cto.com/9736817/1597945

生产环境常见的HTTP状态码列表

原文:http://studys.blog.51cto.com/9736817/1597945

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!