diff options
author | x270 <42441861+x270@users.noreply.github.com> | 2021-04-17 19:51:31 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-04-20 21:25:05 +0900 |
commit | 4134d123f85812e17ef75ad6317009f86a78f4b4 (patch) | |
tree | 8ee05e50178f202c5d9ead07854ff1e606691586 /files | |
parent | 142cd2028dbba8285e03eec61c96ca0c365afe20 (diff) | |
download | translated-content-4134d123f85812e17ef75ad6317009f86a78f4b4.tar.gz translated-content-4134d123f85812e17ef75ad6317009f86a78f4b4.tar.bz2 translated-content-4134d123f85812e17ef75ad6317009f86a78f4b4.zip |
HTTPステータスの補足説明を修正
HTTPステータス301は「Permanent Redirect)」ではなく「Moved Permanently」。
https://developer.mozilla.org/ja/docs/Web/HTTP/Status/301
事前に英語版にてPRし、レビュー済み。
https://github.com/mdn/content/pull/4198
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/http/headers/location/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/http/headers/location/index.html b/files/ja/web/http/headers/location/index.html index 5996315a4f..9ff057b8f4 100644 --- a/files/ja/web/http/headers/location/index.html +++ b/files/ja/web/http/headers/location/index.html @@ -16,7 +16,7 @@ translation_of: Web/HTTP/Headers/Location <ul> <li>{{HTTPStatus("303")}} (See Also) レスポンスは常に {{HTTPMethod("GET")}} メソッドを使用するように誘導され、 {{HTTPStatus("307")}} (Temporary Redirect) および {{HTTPStatus("308")}} (Permanent Redirect) は元のリクエストにおいて使用されたメソッドを変更しません。</li> - <li>{{HTTPStatus("301")}} (Permanent Redirect) と {{HTTPStatus("302")}} (Found) は多くの場合はメソッドを変更しませんが、古いユーザーエージェントは変更することがあります (そのため、基本的に結果は不明です)。</li> + <li>{{HTTPStatus("301")}} (Moved Permanently) と {{HTTPStatus("302")}} (Found) は多くの場合はメソッドを変更しませんが、古いユーザーエージェントは変更することがあります (そのため、基本的に結果は不明です)。</li> </ul> <p>これらのステータスコードを持つすべてのレスポンスは、 <code>Location</code> ヘッダーを送信します。</p> |