URI는 로케이터(locator), 이름(name) 또는 둘 다 추가로 분류 될 수 있다
단어 뜻
scheme://[userinfo@]host[:port][/path][?query][#fragment]
브라우저 요청:
https://www.google.com/search?q=hello&hl=ko
데이터 영역에
GET/search?q=hello&hl=ko HTTP/1.1 Host:www.google.com,
출발지, 목적지의 POST, IP 정보를 담아 패킷을 만들어 REQUEST 요청
HTTP/1.1 200 OK
Content-Type: text/html;charset=UTF-8
Content-Length: 3423
<html>
<body>...</body>
</html>
이런 식의 RESPONSE를 받음
Content-Type은 응답받은 종류를 말함
본 글은 인프런 김영한님의 HTTP강좌를 토대로 작성하였습니다.