From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/bg/web/http/status/404/index.html | 61 +++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 files/bg/web/http/status/404/index.html (limited to 'files/bg/web/http/status/404') diff --git a/files/bg/web/http/status/404/index.html b/files/bg/web/http/status/404/index.html new file mode 100644 index 0000000000..5ec2346c38 --- /dev/null +++ b/files/bg/web/http/status/404/index.html @@ -0,0 +1,61 @@ +--- +title: 404 Not Found +slug: Web/HTTP/Status/404 +tags: + - HTTP + - Грешка при клиента + - Код за състояние + - Четец +translation_of: Web/HTTP/Status/404 +--- +
{{HTTPSidebar}}
+ +

Отговорът с код за грешка в протокола HTTP 404 Not Found (Не е намерен) означава, че сървърът не може да открие заявения източник. Връзки, водещи до страници от вида 404 често се наричат счупени или мъртви връзки и са пример за т.нар. „изгнила връзка“.

+ +

Кодът за състояние 404 не указва дали източникът липсва временно или за постоянно. Но в случай че даден източник бъде премахнат завинаги, по-удачно е да се използва код за състояние {{HTTPStatus(410)}} (Gone) (букв. „отишъл си“) вместо 404.

+ +

Състояние

+ +
404 Not Found
+ +

Custom error pages

+ +

Many web sites customize the look of a 404 page to be more helpful to the user and provide guidance on what to do next. Apache servers can be configured using an .htaccess file and a code snippet like the following example.

+ +
ErrorDocument 404 /notfound.html
+ +

For an example of a custom 404 page, see MDN's 404 page.

+ +
+

Custom design is a good thing, in moderation. Feel free to make your 404 page humorous and human, but don't confuse your users.

+
+ +

Specifications

+ + + + + + + + + + + + +
SpecificationTitle
{{RFC("7231", "404 Not Found" , "6.5.4")}}Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
+ +

Browser compatibility

+ + + +

{{Compat("http.status.404")}}

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf