美文网首页
HTTP基础

HTTP基础

作者: chenxuyuan123 | 来源:发表于2021-03-09 10:43 被阅读0次

一:HTTP的请求方式

image.png

二:HTTP响应状态码

image.png
image.png
可以通过这个命令查看响应状态码
curl -I -s -w "%{http_code}\n" -o /dev/null  www.baidu.com

三:HTTP请求报文

image.png

四:HTTP响应报文

image.png

五:使用命令查看客户端和服务器端之间的响应过程

 [root@web01 ~]# curl -v www.baidu.com/index.html
* About to connect() to www.baidu.com port 80 (#0)   \\DNS解析
*   Trying 39.156.66.14...
* Connected to www.baidu.com (39.156.66.14) port 80 (#0)   \\Tcp三次握手
> GET /index.html HTTP/1.1    \\http请求报文 ,请求起始行
> User-Agent: curl/7.29.0     \\用户的浏览器
> Host: www.baidu.com         \\请求域名
> Accept: */*   
>                           \\空行
< HTTP/1.1 200 OK
< Accept-Ranges: bytes
< Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
< Connection: Keep-Alive
< Content-Length: 2381
< Content-Type: text/html
< Date: Mon, 03 Jun 2019 03:32:03 GMT
< Etag: "588604c8-94d"
< Last-Modified: Mon, 23 Jan 2017 13:27:36 GMT
< Pragma: no-cache
< Server: bfe/1.0.8.18
< Set-Cookie: BDORZ=27315; max-age=86400; domain=.baidu.com; path=/
< 
<!DOCTYPE html>
<!--STATUS OK--><html> <head><meta http-equiv=content-type 
content=text/html;charset=utf-8><meta http-equiv=X-UA-Compatible 
content=IE=Edge><meta content=always name=referrer><link rel=stylesheet 
type=text/css href=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css><title>
百度一下,你就知道</title></head> <body link=#0000cc> <div id=wrapper> <div 

相关文章

  • HTTP 基础

    转载自 github:Interview-Notebook,有删减和改动参考:《图解 HTTP》 一 、基础概念 ...

  • http基础

    URL 统一资源定位符(URL)是资源标识符最常见的形式。URL 描述了一台特定服务器上某资源的特定位置。它们可以...

  • HTTP基础

    HTTP:HyperText Transfer Protocol 超文本传输协议 HTTPS:HTTP基于SSL及...

  • http基础

    前言 今天调试的时候用到了curl,所以这周就简单介绍一下curl的用法。curl一般用来发送http请求,进行w...

  • HTTP 基础

    一什么是URL? 1.1URL和URI有什么区别? URI:Uniform resource identifer,...

  • http基础

    1.http协议 1.1 概念 是对浏览器和服务器端数据传输格式的规范! 1.2 http协议内容 请求 响应 2...

  • HTTP 基础

    HTTP 作用 用于客户端和服务器端的通信。 请求资源一方成为客户端,提供资源一方成为服务器端。 有时候,双方角色...

  • http基础

    OSI 七层模型指什么OSI:Open System Interconnection moble。是一个由国际标准...

  • HTTP基础

    本博客著作权归从这到那所有,转载请注明出处 HTTP基础 HTTP:Hyper Text Transfer Pro...

  • HTTP基础

网友评论

      本文标题:HTTP基础

      本文链接:https://www.haomeiwen.com/subject/hrwpqltx.html