Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 778 Bytes

File metadata and controls

32 lines (23 loc) · 778 Bytes

300 Multiple Choices

There are multiple options for the resource that the client may follow.

ℹ️ Details

The request has more than one possible response. The user agent or user should choose one of them.

💡 Common Use Case

Rarely used. Could be used to present different file format options for a video or document.

💻 Code Example

HTTP/1.1 300 Multiple Choices
Content-Type: text/html

<ul>
  <li><a href="/video.mp4">MP4</a></li>
  <li><a href="/video.webm">WebM</a></li>
</ul>

🖼️ Visual

300 Status Code Image

🔍 Technical Info

  • Code: 300
  • Category: Redirection

📖 Read more on MDN


🔙 Back to List