200 OK 请求成功.一般用于GET与POST请求 300 Multiple Choices 多种选择.请求的资源可包括多个位置,相应可返回一个资源特征与地址的列表用于用户终端(例如:浏览器)选择 301 Moved Permanently 永久移动.请求的资源已被永久的移动到新的URI,返回信息会包括新的URI,浏览器会自动定向到新URI.今后任何新的请求都应使用新的URI代替 302 Found 临时移动.与301类似.但资源只是临时被移动.客户端应继续使用原有的URI…
200 OK 请求成功,一般用于Get和Post请求 300 多种选择.请求的资源可包括多个位置,响应的返回一个资源特征与地址的列表用于浏览器(client)选择 Multiple Choices 301 永久移动.请求的资源被永久移到新的url,返回信息会包括新的url,浏览器自动定向新url moved permanently302 临时移动.客户端继续使用原有url Found 304 未修改 Not Modified 400 客户端请求的语法错误,服务器无法理解 Bad request…
由于用户在http返回前关闭/取消,或者防火墙等原因,会造成http请求没有status信息.w3c有相应的说明:http://www.w3.org/TR/XMLHttpRequest/#the-status-attribute 4.7.1 The status attribute client . status Returns the HTTP status code. The status attribute must return the result of running these s…
生产环境常见的HTTP状态码列表(List of HTTP status codes)为: 200 - OK,服务器成功返回网页 - Standard response for successful HTTP requests. 301 - Moved Permanently(永久跳转),请求的网页已永久跳转到新位置. - This and all future requests should be directed to the given. 403 - Forbidden(禁止…