diff options
Diffstat (limited to 'files/ko/glossary/http/index.html')
-rw-r--r-- | files/ko/glossary/http/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/files/ko/glossary/http/index.html b/files/ko/glossary/http/index.html new file mode 100644 index 0000000000..da42fc87be --- /dev/null +++ b/files/ko/glossary/http/index.html @@ -0,0 +1,19 @@ +--- +title: HTTP +slug: Glossary/HTTP +translation_of: Glossary/HTTP +--- +<p>The HyperText Transfer Protocol (<strong>HTTP</strong>) 는 기본적으로 하이퍼미디어 문서를 전송하는 네트워크 {{glossary("프로토콜")}} 입니다. 사람들이 읽을 수 있도록 브라우저와 서버 사이에 존재하죠. 현재 버전의 HTTP 규격은 <a href="/en-US/docs/Glossary/HTTP_2">HTTP/2</a>입니다.</p> + +<p>{{glossary("URI")}}의 일부로, "http://" 는 "schema" 라고도 불리며, 일반적으로 주소의 시작 부분에 위치합니다. 일례로 "https://developer.mozilla.org" 라는 주소는 HTTP 프로토콜을 사용하여 문서를 요청하도록 브라우저에 명시한다는 것을 의미합니다. 이 경우 https는 HTTP 프로토콜의 보안 버전인 {{glossary("SSL")}} 를 나타냅니다 (TLS라고도 부르죠).</p> + +<p>HTTP 텍스트 기반 (모든 통신은 일반 텍스트로 수행됩니다) 이며 stateless (이전의 통신을 인식하지 않습니다) 입니다. 이 속성은 www 상에서 인간이 문서(웹 사이트) 를 읽는 것을 이상적으로 수행할 수 있도록 합니다. 그뿐만 아니라, HTTP 는 서버 간 웹 서비스 {{glossary("REST")}} 또는 웹 사이트 내의 요청 {{glossary("AJAX")}} 에 대한 기초로도 사용할 수 있습니다.</p> + +<div> +<h2 id="더_알아보기">더 알아보기</h2> + +<ul> + <li><a href="/en-US/docs/Web/HTTP">HTTP (MDN</a>)</li> + <li>{{interwiki("wikipedia", "Hypertext Transfer Protocol", "HTTP")}} (Wikipedia)</li> +</ul> +</div> |