[Yandex Cloud documentation](../../../../index.md) > [Yandex Object Storage](../../../index.md) > API reference > [AWS S3 REST](../../index.md) > [REST](../index.md) > Static Website Hosting > Static website response codes

# Static website response codes

If a bucket is configured to host static websites, the user trying to access it may get any of the response codes described in the table below.

Code | Description
-----------|---------
`200 OK` | Successful response.
`302 Found`  | If Object Storage receives a request to the `http://website.yandexcloud.net/bucket/x` resource without `/` at the end, Object Storage will first try to find the `x` object. If this object does not exist but `x/index.html` is set as the website home page, the user will get code 302 and will be redirected to `http://website.yandexcloud.net/bucket/x/`.
`304 Not Modified` | Object Storage uses the `If-Modified-Since`, `If-Unmodified-Since`, `If-Match`, `If-None-Match` request headers to determine whether an object has been modified compared to the one previously cached on the client side. If the object is not modified, the user will get the `304 Not Modified` response.
`403 Forbidden` | This code is returned if the bucket to receive the request has no public access configured.<br/><br/>[Configuring public access to a bucket](../../../operations/buckets/bucket-availability.md).
`404 Not Found` | This code is returned if the resource to receive the request does not exist or the bucket containing the requested resource is not configured for hosting static websites.<br/><br/>[Setting up hosting](../../../operations/hosting/setup.md).
`500 Service Error` | Internal error in Object Storage.
`503 Service Unavailable` | The load on the service is too high. You need to reduce your request rate.

#### Related articles {#related-articles}

* [Setting up hosting](../../../operations/hosting/setup.md)

#### See also {#see-also}

* [Getting started with the AWS S3 API in Yandex Object Storage](../../s3-api-quickstart.md)

* [Debugging requests using the AWS CLI](../../signing-requests.md#debugging)

* [Example of sending a signed request using curl](../../../api-ref/authentication.md#s3-api-example)

* [Code example for generating a signature](../../../concepts/pre-signed-urls.md#code-examples)