aboutsummaryrefslogtreecommitdiff
path: root/files/nl/glossary/http
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
commit074785cea106179cb3305637055ab0a009ca74f2 (patch)
treee6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/nl/glossary/http
parentda78a9e329e272dedb2400b79a3bdeebff387d47 (diff)
downloadtranslated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz
translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2
translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip
initial commit
Diffstat (limited to 'files/nl/glossary/http')
-rw-r--r--files/nl/glossary/http/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/files/nl/glossary/http/index.html b/files/nl/glossary/http/index.html
new file mode 100644
index 0000000000..d5a6d6df0c
--- /dev/null
+++ b/files/nl/glossary/http/index.html
@@ -0,0 +1,24 @@
+---
+title: HTTP
+slug: Glossary/HTTP
+tags:
+ - Beginner
+ - HTTP
+ - infrastructuur
+ - woordenlijst
+translation_of: Glossary/HTTP
+---
+<p>HyperText Transfer Protocol (<strong>HTTP</strong>) is het onderliggend netwerk {{glossary("protocol")}} dat het mogelijk maakt om hypermediabestanden over te brengen op het {{glossary("World Wide Web","Web")}}. Meestal gebeurt dit tussen een browser en een server. De huidige versie van de HTTP specificatie is {{glossary("HTTP_2", "HTTP/2")}}.</p>
+
+<p>De "http://" of het "schema" , als onderdeel van een {{glossary("URI")}}, staat meestal in het begin van een adres, zoals bijvoorbeeld in "https://developer.mozilla.org", om aan te geven aan de browser dat hij het document moet aanvragen met het HTTP protocol.</p>
+
+<p>Het HTTP protocol is tekstgebaseerd (alle communicatie wordt gedaan in onbewerkte tekst) en is staatloos (geen enkele communicatie is zich bewust van vorige communicaties). Deze eigenschap maakt het ideaal om documenten (websites) te lezen op "the world wide web". Maar HTTP kan ook gebruikt worden als basis voor {{glossary("REST")}} webdiensten van server tot server of {{glossary("AJAX")}} aanvragen binnen websites om ze dynamischer te maken.</p>
+
+<div>
+<h2 id="Meer_informatie">Meer informatie</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web/HTTP">HTTP op MDN</a></li>
+ <li>{{interwiki("wikipedia", "Hypertext Transfer Protocol", "HTTP")}} op Wikipedia</li>
+</ul>
+</div>