HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
📝
남득윤 학습 저장소
/
모든 개발자를 위한 HTTP 웹 네트워크
모든 개발자를 위한 HTTP 웹 네트워크
/
🌐
URI와 웹 브라우저 요청 흐름
🌐

URI와 웹 브라우저 요청 흐름

 

URI

 
notion image
notion image
 
URI - Uniform Resource Identifier
URL- Uniform Resource Locator - 리소스의 위치를 기반으로 Identify
URN- Uniform Resource Name - 리소스의 이름을 기반으로 Identify
 

웹 브라우저 요청 흐름

notion image
 
GET /serach?q=hello?hl=ko HTTP/1.1 Host: www.google.com
HTTP 요청 메시지
 

HTTP 메시지 전송

notion image
 

TCP/IP 패킷

notion image
 
HTTP/1.1 200 OK Content-Type: text/html;charset=UTF-8 Content-Length: 3423 <html> <body> ... </body> </html>
 
웹브라우저 HTML 렌더링
notion image