The following report shows the status codes returned by the HTTP server. For each line in
the log file, a status code is returned telling how the request was handled.
(次のレポートでは、HTTPサーバーが返したステータス・コードをリストします。ログ・ファイルの各行に対して、リクエストをどのように処理したのかを示すステータス・コードが返されます)
括弧内の数字はステータス・コードです。その後の数字は、ステータス・コードが返された数です。
OK (200): 803
The request was fulfilled.
(リクエストは正常に終了しました)
UNAUTHORIZED (401): 22
The parameter to this message gives a specification of authorization
schemes which are acceptable. The client should retry the request with
a suitable Authorization header.
(アクセス権がありません。パラメータを利用すると、アクセス権などを設定できます。 ユーザーは適切なアクセス権を受けてからリクエストを再実行するべきです)
NOT FOUND (404): 15
The server has not found anything matching the URI given
(指定したURIに一致するものが見つかりませんでした)
MOVED (301): 1
The data requested has been assigned a new URI, the change is
permanent.
(リクエストしたデータには新しいURIが割り当てられています。 この変更は固定的なものです)
NOT MODIFIED (304): 106
If the client has done a conditional GET and access is allowed, but
the document has not been modified since the date and time specified
in If-Modified-Since field, the server responds with a 304 status code
and does not send the document body to the client.
(クライアントが条件付きのGETを実行し、アクセス権も認められていましたが、If-Modified-Sinceフィールドに指定した日付の後、このドキュメントが変更されていませんでした。この場合、サーバーは304ステータス・コードを返し、ドキュメントのボディーをクライアントに送ることはありません)