HTTP: Difference between revisions

From DWIKI
Tony (talk | contribs)
Tag: wikieditor
Tony (talk | contribs)
Tag: wikieditor
 
(3 intermediate revisions by the same user not shown)
Line 18: Line 18:


==Most common HTTP status codes==
==Most common HTTP status codes==
===200===
OK
===301===
===301===
Moved permanently, redirect
Moved permanently, redirect
===400===
Bad request
===401===
===401===
Unauthorized
Unauthorized
Line 25: Line 31:
===403===
===403===
Forbidden
Forbidden
==404===
===404===
Not found
Not found


===500===
===500===
Internal Server Error
Internal Server Error

Latest revision as of 10:47, 15 November 2025

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


Most common HTTP status codes

200

OK

301

Moved permanently, redirect

400

Bad request

401

Unauthorized

403

Forbidden

404

Not found

500

Internal Server Error