HTTP (하이퍼텍스트 전송 프로토콜)

월드 와이드 웹(Web)에서 데이터 통신을 위한 기초적인 응용 계층 프로토콜.

현대 웹의 필수 요소로, 보안을 위해 TLS 인증을 추가한 HTTPS가 표준으로 자리 잡았습니다.

        graph LR
  Center["HTTP (하이퍼텍스트 전송 프로토콜)"]:::main
  Rel_decentralized_autonomous_organization_dao["decentralized-autonomous-organization-dao"]:::related -.-> Center
  click Rel_decentralized_autonomous_organization_dao "/terms/decentralized-autonomous-organization-dao"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

브라우저와 웹사이트가 대화하는 방식입니다. 브라우저가 '페이지 보여줘'라고 묻고, 서버가 답하는 규칙입니다.

🤓 Expert Deep Dive

HTTP는 로컬 캐싱과 쿠키를 통해 상태를 관리합니다. HTTP/2의 멀티플렉싱, HTTP/3의 QUIC 도입 등 효율성을 극대화하는 방향으로 발전해 왔습니다.

❓ 자주 묻는 질문

What is the difference between HTTP and HTTPS?

HTTPS is HTTP with encryption (SSL/TLS), making it secure for sensitive data like passwords.

What does a 404 error mean?

It means the server couldn't find the specific resource you requested.

📚 출처