From 72ffc3a9ad116da8fbedfca4b5cfd7687d1ada75 Mon Sep 17 00:00:00 2001 From: akp Date: Sun, 11 Feb 2024 22:47:07 +0000 Subject: [PATCH] Add link to HTTP response statuses list on HTTP Messages page (#32216) Add link to HTTP response statuses list to HTTP Messages page --- files/en-us/web/http/messages/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/http/messages/index.md b/files/en-us/web/http/messages/index.md index 27dd8e6dea4e54c..f07ae25ebbf08ff 100644 --- a/files/en-us/web/http/messages/index.md +++ b/files/en-us/web/http/messages/index.md @@ -80,7 +80,7 @@ _Note: The start-line is called the "status line" in requests._ The start line of an HTTP response, called the _status line_, contains the following information: 1. The _protocol version_, usually `HTTP/1.1`, but can also be `HTTP/1.0`. -2. A _status code_, indicating success or failure of the request. Common status codes are {{HTTPStatus("200")}}, {{HTTPStatus("404")}}, or {{HTTPStatus("302")}}. +2. A [_status code_](/en-US/docs/Web/HTTP/Status), indicating success or failure of the request. Common status codes are {{HTTPStatus("200")}}, {{HTTPStatus("404")}}, or {{HTTPStatus("302")}}. 3. A _status text_. A brief, purely informational, textual description of the status code to help a human understand the HTTP message. A typical status line looks like: `HTTP/1.1 404 Not Found`.