blob: 6b73e254ea13d956fa424d651543a88ab476624b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
---
title: 404 Not Found
slug: Web/HTTP/Status/404
tags:
- Browser
- HTTP
- Reference
- Status code
- クライアントエラー
- ステータスコード
translation_of: Web/HTTP/Status/404
---
<div>{{HTTPSidebar}}</div>
<p>HTTP <code><strong>404 Not Found</strong></code> は、サーバーがリクエストされたリソースを見つけることができない時のクライアントエラーのレスポンスコードです。 404 ページにつながるリンクは、壊れたリンクまたは死んだリンクと呼ばれ、<a href="https://en.wikipedia.org/wiki/Link_rot">リンク腐敗</a>の影響を受ける可能性があります。</p>
<p>404 ステータスコードは、リソースが一時的または永続的に失われているかどうかを示してはいませんが、リソースが永久に削除された場合は、 404 ステータスの代わりに {{HTTPStatus("410")}} (Gone) を使用する必要があります。</p>
<h2 id="Status" name="Status">ステータス</h2>
<pre class="syntaxbox notranslate">404 Not Found</pre>
<h2 id="Custom_error_pages" name="Custom_error_pages">カスタムエラーページ</h2>
<p>多くのウェブサイトでは、 404 ページの見た目をカスタマイズし、よりユーザーにとって役立つような、次に何をすべきかについてのガイダンスを提供しています。 Apache サーバーは <code>.htaccess</code> ファイルや、以下の例のようなコードスニペットを使用して構成することができます。</p>
<pre class="brush: bash notranslate">ErrorDocument 404 /notfound.html</pre>
<p>カスタム 404 ページの例については、 <a href="https://developer.mozilla.org/ja/404">MDN の 404 ページ</a>を参照してください。</p>
<div class="note">
<p>適度なデザインのカスタマイズは良いことです。あなたの 404 ページをユーモアや思いやりのあるものにすることは自由ですが、ユーザーを混乱させないようにしてください。</p>
</div>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">題名</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{RFC("7231", "404 Not Found" , "6.5.4")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("http.status.404")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{HTTPStatus("410")}}</li>
<li>
<p>{{interwiki("wikipedia", "HTTP_404", "Wikipedia: HTTP 404")}}</p>
</li>
</ul>
|