414 URI 太长
HTTP **414 URI 太长
** 客户端错误响应 状态码表示客户端请求的 URI 超过服务器愿意解释的长度。
在某些罕见的情况下,可能会发生此错误
某些系统将 414 URI 太长
实现为 414 Request-URI 太大
。
状态
http
414 URI Too Long
示例
使用 GET 提交表单
在以下示例中,HTML <form>
方法 错误地使用了 get
而不是 post
。大量表单数据被附加到表单的 action
属性中指定的 URL,并作为 GET 请求发送。
http
GET /search?feedback=it+was+the+best+of+times+it+was+the+worst+of+times… HTTP/1.1
Host: example.com
此请求达到特定服务器的 URI 长度限制,并作为响应发送 414。
http
HTTP/1.1 414 URI Too Long
Content-Type: text/html; charset=UTF-8
Date: Fri, 28 Jun 2024 11:40:58 GMT
Content-Length: 1234
<!doctype html>
<head>
<title>414 - URI Too Long</title>
</head>
<body>
<h1>414 - URI Too Long</h1>
<p>The URI provided was too long for the server to process.</p>
</body>
</html>
规范
规范 |
---|
HTTP 语义 # status.414 |