Skip to main content
Back to Home

HTTP Code: 206 (Partial Content)

HTTP Status Code Reference

Status Category

2xxSuccess

Meaning & Definition

The server is delivering only part of the resource due to a range header sent by the client.

Common Causes

  • Resumable file downloads
  • HTML5 video and audio media streaming

How to resolve HTTP code errors

1. Inspect Logs: Check server logs (e.g. error.log) to locate runtime exceptions or database disconnects.

2. Test Endpoint: Use our Uptime Checker or redirects prober to verify response headers and payload size.

3. Configure Rules: Implement custom redirect rules or error fallback paths below in Nginx/Apache config.

Nginx Configuration Setup

max_ranges 0; # Limits or enables HTTP range requests

Apache Configuration Setup

Header set Accept-Ranges bytes