aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/entity_header
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/glossary/entity_header
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/ko/glossary/entity_header')
-rw-r--r--files/ko/glossary/entity_header/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/files/ko/glossary/entity_header/index.html b/files/ko/glossary/entity_header/index.html
new file mode 100644
index 0000000000..35ef8a7bbc
--- /dev/null
+++ b/files/ko/glossary/entity_header/index.html
@@ -0,0 +1,26 @@
+---
+title: 엔티티 헤더
+slug: Glossary/Entity_header
+tags:
+ - WebMechanics
+ - 용어
+translation_of: Glossary/Entity_header
+---
+<p>엔티티 헤더는 메시지 바디의 컨텐츠를 나타내는 {{glossary("header", "HTTP 헤더")}}입니다. 엔티티 헤더는 HTTP 요청 및 응답 모두에서 사용됩니다. {{HTTPHeader("Content-Length")}}, {{HTTPHeader("Content-Language")}}, {{HTTPHeader("Content-Encoding")}}과 같은 헤더는 엔티티 헤더입니다.</p>
+
+<p>엔티티 헤더가 요청이나 응답 헤더가 아님에도 불구하고, 이러한 용어로 종종 포함됩니다.</p>
+
+<p>다음 예시에서, {{HTTPHeader("Content-Length")}}는 엔티티 헤더지만, {{HTTPHeader("Host")}}와 {{HTTPHeader("User-Agent")}}는 {{glossary("request header", "request 헤더")}}입니다:</p>
+
+<pre>POST /myform.html HTTP/1.1
+Host: developer.mozilla.org
+User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0
+Content-Length: 128</pre>
+
+<h2 id="더_알아보기">더 알아보기</h2>
+
+<h3 id="기술적_지식">기술적 지식</h3>
+
+<ul>
+ <li><a href="/ko/docs/Web/HTTP/Headers">모든 HTTP 헤더의 목록</a></li>
+</ul>