- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
HTTP 请求的第一行包含一个“目标”,它是以下之一:
request-target = origin-form
/ absolute-form
/ authority-form
/ asterisk-form
origin-form
是典型的形式,例如 GET/hello-world HTTP/1.1
。代理请求使用绝对形式
:
GET https://example.com/ HTTP/1.1
假设该请求到达源服务器,它只是试图服务于一些其他 域。 (例如,假设我们向 en.wikipedia.org
发送了上述请求。)手头的服务器不希望成为代理服务器,并且不希望完成发出的请求。它应该返回什么? (理想情况下,为什么?HTTP RFC 中是否有任何地方说明了这一点?)
(我查询了一些服务器以查看根据经验发生了什么。我得到了大部分 500 和 200(但内容错误)、409 冲突
和在一个特殊情况下的 301 Moved Permanently
形成了一个无限循环。我感觉客户端向服务器发送代理请求是一个错误,服务器不能也不会满足它。服务器及其行为都没有问题,应该影响更改的区域直接位于客户端,因此,4xx,但我不清楚哪个是合适的。)
最佳答案
好问题。来自 RFC 2616 :
5.1.2 Request-URI
...
To allow for transition to absoluteURIs in all requests in future versions of HTTP, all HTTP/1.1 servers MUST accept the absoluteURI form in requests, even though HTTP/1.1 clients will only generate them in requests to proxies.
和:
5.2 The Resource Identified by a Request
The exact resource identified by an Internet request is determined by examining both the Request-URI and the Host header field.
An origin server that does not allow resources to differ by the requested host MAY ignore the Host header field value when determining the resource identified by an HTTP/1.1 request. (But see section 19.6.1.1 for other requirements on Host support in HTTP/1.1.)
An origin server that does differentiate resources based on the host requested (sometimes referred to as virtual hosts or vanity host names) MUST use the following rules for determining the requested resource on an HTTP/1.1 request:
If Request-URI is an absoluteURI, the host is part of the Request-URI. Any Host header field value in the request MUST be ignored.
If the Request-URI is not an absoluteURI, and the request includes a Host header field, the host is determined by the Host header field value.
If the host as determined by rule 1 or 2 is not a valid host on the server, the response MUST be a 400 (Bad Request) error message.
所以看起来正确的答案是要么忽略主机并尝试在本地完成请求,让它产生任何可能的错误,要么发送 400。这不是完全确定的,因为错误是在 GET 行中,而不是 HOST 行中,并且您的不是“根据请求的主机区分资源的原始服务器”,但它看起来与 RFC 一样接近。
在后续的 RFC 中,RFC 7230与上文5.1.2措辞相同;它没有我能找到的第 5.2 节之类的内容,但它确实有:
Recipients of an invalid request-line SHOULD respond with either a 400 (Bad Request) error or a 301 (Moved Permanently) redirect with the request-target properly encoded.
关于http - HTTP 服务器应该如何响应它不想处理的代理请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45658638/
我的应用程序中有一个 IList 站点,并且站点有大量属性。 我想将此列表转换为 JSON,以便在类似于此的下拉列表中使用 var sites = SiteRepository.FindAll
我正在将一些代码从 bluebird 切换到原生 Promises,并且我对原生 promises 吞下错误这一事实感到相当恼火,即使没有定义 .catch() 也是如此。它使调试变得不可能,除非您在
在同步访问共享资源时,是否有理由不使用读/写锁而不是普通的互斥锁(基本上只是写锁),除了它具有比我可能需要的更多功能的哲学原因? 换句话说,如果我只是默认使用读/写锁作为我首选的同步结构,我是不是在踢
我刚进入这个元素,代码已经写好了,但我们发现了一个问题。当您单击菜单中的任何位置时,它会变成金色,您看不到菜单该部分中的任何链接。您可以再次单击它,它将返回到正常状态。这只发生在 Internet E
这是一个简单的类和简单的测试函数: #include #include namespace { using namespace std; } class NameStream {
我有一个 std::vector其中 Foo是一个包含 Foo( Foo&& ) noexcept 的类. 向容器中添加对象完美无缺,但是使用 std::vector::erase( iterator
我正在通过这段代码使用各种浏览器尝试 localStorage 和 JSON: function getStorage() { stored = JSON.pa
您可能认为此问题与 Running two projects at once in Visual Studio 完全相同.不完全是,恰恰相反。 我有一个带有两个 MVC3 项目的 VS 2010 解决
我正在制作一个网站:http://arc-angyal.hu/ 我的第一个问题是,我无法让左侧的红色 div 足够高以填充页眉和页脚之间的空间。它位于标题之后和导航之前。我已经设置: html, bo
根据 This Question ,我正在使用线程来终止用户输入的函数。我的代码看起来像: bool stopper = false; thread stopThread(userStop, &sto
我是一名优秀的程序员,十分优秀!