HTTP: Difference between revisions

From DWIKI
mNo edit summary
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:


=Links=
=Links=
==HTTP/2==
*[https://en.wikipedia.org/wiki/HTTP/2 Wikipedia HTTP/2]
===Curl check for http/2===
curl -s -o /tmp/foo https://example.com -w '%{http_version}\n'


=HOWTO=
=HOWTO=
==HTTP telnet session==
==HTTP telnet session==
GET / HTTP/1.0
GET / HTTP/1.0
Host: www.example.com
Host: www.example.com


=StatusCodes=
=HTTP Status Codes=
 
*[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes List of HTTP status codes]
*http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
*[https://www.rfc-editor.org/rfc/rfc9110.html RFC 9110 HTTP Semantics]

Latest revision as of 11:18, 23 August 2023

HyperText Transfer Protocol

Links

HTTP/2

Curl check for http/2

curl -s -o /tmp/foo https://example.com -w '%{http_version}\n'

HOWTO

HTTP telnet session

GET / HTTP/1.0
Host: www.example.com

HTTP Status Codes