diff options
Diffstat (limited to 'files/ja/web/http/status/404/index.html')
-rw-r--r-- | files/ja/web/http/status/404/index.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/files/ja/web/http/status/404/index.html b/files/ja/web/http/status/404/index.html new file mode 100644 index 0000000000..b3019345bd --- /dev/null +++ b/files/ja/web/http/status/404/index.html @@ -0,0 +1,65 @@ +--- +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> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<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> |