header-field =field-name”:”OWS field-value OWS (OWS:띄어쓰기 허용)
- field-name 은 대소문자 구분 없음
💬 GET/search?q=hello&hl=ko HTTP/1.1
Host: www.google.com
💬 HTTP/1.1 200 OK
Content-Type: text/html;charset=UTF-8
Content-Length: 3423
<html>
<body>…</body>
</html>
message body - RFC7230
💬 HTTP/1.1 200 OK
Content-Type: text/html;charset=UTF-8 // 표현 헤더
Content-Length: 3423
<html> // 표현 데이터
<body>…</body>
</html>