HTTP OPTIONS方法响应

时间:2018-11-07 11:20:03

标签: http url methods request options

当我使用命令时:

curl -X OPTIONS http://www.example.com -i
  

http://www.example.com:这只是一个虚拟的例子

我得到的答复是页面索引的源代码。我希望返回包含带有允许方法的Allow标头的响应,例如:

HTTP / 1.1 200 OK
Allow: OPTIONS, GET, HEAD, POST
Cache-Control: max-age = 604800
Date: Thu, 13 Oct 2016 11:45:00 GMT
Expires: Thu, 20 Oct 2016 11:45:00 GMT
Server: EOS (lax004 / 2813)
x-ec-custom-error: 1
Content-Length: 0

我想知道为什么。

0 个答案:

没有答案