HTTP项目常见状态码笔记(200,302,400,403,404,405,500...),

目录

认识 "状态码" (status code)

出现200

403 Forbidden

出现404 404 Not Found

出现 405 Method Not Allowed

出现 500 Internal Server Error

504 Gateway Timeout

302 Move temporarily

301 Moved Permanently

出现 "空白页面"  

出现 "无法访问此网站"


认识 "状态码" (status code)

状态码表示访问一个页面的结果 . ( 是访问成功 , 还是失败 , 还是其他的一些情况 ...).

出现200

这是一个最常见的状态码 , 表示访问成功 .
抓包抓到的大部分结果都是 200
例如访问搜狗主页
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 10 Jun 2021 06:07:27 GMT
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: black_passportid=; path=/; expires=Thu, 01 Jan 1970 00:00:00 
GMT; domain=.sogou.com
Pragma: No-cache
Cache-Control: max-age=0
Expires: Thu, 10 Jun 2021 06:07:27 GMT
UUID: 80022370-065c-49b0-a970-31bc467ff244
Content-Length: 14805

                    
                    

你可能感兴趣的:(servlet,笔记,tomcat)