【Http协议入门】
Http协议入门
什么是http协议
http协议: 对浏览器客户端 和 服务器端 之间数据传输的格式规范
查看http协议的工具
1)使用火狐的firebug插件(右键->firebug->网络)
2)使用谷歌的“审查元素”
3)使用系统自带的telnet工具(远程访问工具)
a)telnet localhost 8080 访问tomcat服务器
b)ctrl+] 回车可以看到回显
c)输入请求内容
GET /day09/hello HTTP/1.1
Host: localhost:8080
d)回车,即可查看到服务器响应信息。
http协议内容
请求(浏览器-》服务器)
GET /day09/hello HTTP/1.1
Host: localhost:8080
User-Agent: Mozilla/5.0 (Wind
【Http协议入门】最先出现在Python成神之路。
共有 0 条评论