HTTPステータスコードリファレンス

全HTTPステータスコード(1xx-5xx)の詳細な説明付き完全リファレンス。HTTPレスポンスのデバッグを行うWebデベロッパーやシステム管理者に最適です。

1xx - Informational

Request received, continuing process

100

Continue

The client should continue with its request

101

Switching Protocols

The server is switching protocols as requested by the client

102

Processing

The server is processing the request but no response is available yet

103

Early Hints

Used to return some response headers before final HTTP message

2xx - Success

The action was successfully received, understood, and accepted

200

OK

The request was successful

201

Created

The request was successful and a new resource was created

202

Accepted

The request has been accepted for processing, but processing is not complete

203

Non-Authoritative Information

The returned meta-information is not definitive

204

No Content

The request was successful but there is no content to return

205

Reset Content

The client should reset the form that caused this request to be sent

206

Partial Content

The server is delivering only part of the resource due to a range header

207

Multi-Status

The message body contains multiple status codes for different operations

208

Already Reported

The members of a DAV binding have already been enumerated

226

IM Used

The server has fulfilled a request using an instance manipulation

3xx - Redirection

Further action must be taken in order to complete the request

300

Multiple Choices

There are multiple options for the resource from which the client may choose

301

Moved Permanently

The resource has been permanently moved to a new URL

302

Found

The resource temporarily resides under a different URL

303

See Other

The response can be found under a different URL using GET method

304

Not Modified

The resource has not been modified since the last request

305

Use Proxy

The requested resource must be accessed through the proxy given by the Location field

307

Temporary Redirect

The request should be repeated with another URL but future requests should still use the original URL

308

Permanent Redirect

The request and all future requests should be repeated using another URL

4xx - Client Error

The request contains bad syntax or cannot be fulfilled

400

Bad Request

The server cannot process the request due to a client error

401

Unauthorized

Authentication is required and has failed or has not yet been provided

402

Payment Required

Reserved for future use

403

Forbidden

The request was valid, but the server is refusing action

404

Not Found

The requested resource could not be found

405

Method Not Allowed

The request method is not supported for the requested resource

406

Not Acceptable

The requested resource is capable of generating only content not acceptable according to Accept headers

407

Proxy Authentication Required

The client must first authenticate itself with the proxy

408

Request Timeout

The server timed out waiting for the request

409

Conflict

The request could not be processed because of conflict in the request

410

Gone

The resource requested is no longer available and will not be available again

411

Length Required

The request did not specify the length of its content

412

Precondition Failed

The server does not meet one of the preconditions that the requester put on the request

413

Payload Too Large

The request is larger than the server is willing or able to process

414

URI Too Long

The URI provided was too long for the server to process

415

Unsupported Media Type

The request entity has a media type which the server or resource does not support

416

Range Not Satisfiable

The client has asked for a portion of the file, but the server cannot supply that portion

417

Expectation Failed

The server cannot meet the requirements of the Expect request-header field

418

I'm a teapot

This code was defined as an April Fools' joke and is not expected to be implemented by actual HTTP servers

421

Misdirected Request

The request was directed at a server that is not able to produce a response

422

Unprocessable Entity

The request was well-formed but was unable to be followed due to semantic errors

423

Locked

The resource that is being accessed is locked

424

Failed Dependency

The request failed because it depended on another request and that request failed

425

Too Early

The server is unwilling to risk processing a request that might be replayed

426

Upgrade Required

The client should switch to a different protocol

428

Precondition Required

The origin server requires the request to be conditional

429

Too Many Requests

The user has sent too many requests in a given amount of time

431

Request Header Fields Too Large

The server is unwilling to process the request because header fields are too large

451

Unavailable For Legal Reasons

The server is denying access to the resource as a consequence of a legal demand

5xx - Server Error

The server failed to fulfill an apparently valid request

500

Internal Server Error

A generic error message when an unexpected condition was encountered

501

Not Implemented

The server either does not recognize the request method, or it lacks the ability to fulfill it

502

Bad Gateway

The server was acting as a gateway or proxy and received an invalid response from upstream

503

Service Unavailable

The server is currently unavailable (because it is overloaded or down for maintenance)

504

Gateway Timeout

The server was acting as a gateway or proxy and did not receive a timely response from upstream

505

HTTP Version Not Supported

The server does not support the HTTP protocol version used in the request

506

Variant Also Negotiates

Transparent content negotiation for the request results in a circular reference

507

Insufficient Storage

The server is unable to store the representation needed to complete the request

508

Loop Detected

The server detected an infinite loop while processing the request

510

Not Extended

Further extensions to the request are required for the server to fulfill it

511

Network Authentication Required

The client needs to authenticate to gain network access

Share this tool

Help others discover HTTP Status Code Reference

HTTPステータスコードリファレンスについて

使い方

  • カテゴリ(1xx-5xx)別に整理されたHTTPステータスコードを閲覧
  • 番号、名前、または説明で特定のコードを検索
  • 集中した閲覧のためにステータスコードカテゴリでフィルタリング
  • 各ステータスコードの詳細な説明を取得

一般的な使用例

  • HTTPレスポンスをデバッグするWebデベロッパー
  • サーバー問題を解決するシステム管理者
  • HTTPプロトコルを学ぶ学生
  • API開発中のクイックリファレンス

よくある質問

HTTPステータスコードとは何ですか?

HTTPステータスコードは、クライアントのリクエスト結果を示すためにWebサーバーが返す3桁の数字です。5つのカテゴリに分類されます:1xx(情報)、2xx(成功)、3xx(リダイレクト)、4xx(クライアントエラー)、5xx(サーバーエラー)。

404エラーとは何を意味しますか?

404 Not Foundは、サーバーがリクエストされたリソースを見つけられなかったことを意味します。これは最も一般的なクライアントエラーコードの1つで、URLが間違っているか、リソースが移動または削除されたことを示します。

301と302リダイレクトの違いは何ですか?

301 Moved Permanentlyはリソースが新しいURLに恒久的に移動したことを示し、302 Foundは一時的なリダイレクトを示します。検索エンジンはSEO目的でこれらを異なる方法で扱います。

500 Internal Server Errorとは何を意味しますか?

500 Internal Server Errorはサーバー側の一般的なエラーメッセージで、サーバーで何かが上手くいかなかったことを示しますが、具体的な問題は特定できません。サーバーの設定ミスやアプリケーションエラーが原因であることが多いです。

401エラーと403エラーはいつ見ますか?

401 Unauthorizedは認証が必要か失敗したことを意味します。403 Forbiddenは認証済みだがリソースへのアクセス権限がないことを意味します。

1xxステータスコードは何のために使われますか?

1xx情報ステータスコードはリクエストが受信され処理が継続中であることを示します。エンドユーザーがこれらを見ることはほとんどなく、主にプロトコルレベルの通信に使用されます。

418「私はティーポット」ステータスコードは本物ですか?

はい、HTTP 418「私はティーポット」はRFC 2324でエイプリルフールのジョークとして定義された本物のステータスコードです。ハイパーテキストコーヒーポット制御プロトコルの一部で、実際のHTTPサーバーには実装されることは想定されていません。

429 Too Many Requestsは何を示しますか?

429 Too Many Requestsは、ユーザーが一定時間内に過剰なリクエストを送信したことを意味します。Webサービスや APIの乱用を防ぐためのレート制限に一般的に使用されます。

このツールをWebアプリケーションのデバッグに使うには?

検索機能を使って特定のエラーコードをすばやく見つけ、カテゴリでフィルタリングして様々なレスポンスタイプを理解し、詳細な説明を参照して各コードの意味と解決方法を把握してください。

100-599の範囲外のステータスコードはありますか?

いいえ、標準HTTPステータスコードは100から599の3桁の数字です。この範囲外のコードはHTTP仕様の一部ではありません。

見慣れないステータスコードに遭遇した場合はどうすればよいですか?

このリファレンスツールを使って番号でコードを検索してください。リストにない場合は、作業しているアプリケーションやサービス固有のカスタムコードかもしれません。

ステータスコードがSEOにとって重要な理由は何ですか?

検索エンジンはHTTPステータスコードを使用してWebページの扱いを理解します。301リダイレクト、404エラー、200成功レスポンスの適切な使用は、検索エンジンがサイトを正確にクロールしインデックスするのに役立ちます。

Share ToolsZone

Help others discover these free tools!

このページをシェア

HTTPステータスコードリファレンス | 完全な1xx-5xxガイド