
[모든 개발자를 위한 HTTP 웹 기본 지식] 섹션 7. HTTP 헤더1 - 일반 헤더
·
💻/HTTP
// HTTP 요청 메시지 == 전송 데이터start-line 시작 라인: GET/search?q=hello&hl=ko HTTP/1.1header 헤더: HOST: www.google.comempty line 공백 라인:-> 요청 메시지도 body 본문을 가질 수 있음// HTTP 응답 메시지start-line 시작 라인: HTTP/1.1 200 OKheader 헤더: Content-Type: text/html;charset=UTF-8empty line 공백 라인: Content-Length: 3423message body ...HTTP 헤더header-field = field-name “:” OWS field-value OWS (OWS: 띄어쓰기 허용)field-name: ..