我无法从curl命令返回200响应

时间:2016-11-20 11:51:07

标签: http tomcat curl

我的tomcat服务器上运行了一个Web应用程序。在浏览器中输入网址时,应用程序正常运行:

enter image description here

但是当我用curl命令执行它时:



curl  -IL http://localhost:8090/mysite




我得到以下内容:



HTTP/1.1 405 Method Not Allowed
Server: Apache-Coyote/1.1
Allow: GET
Content-Type: text/html;charset=utf-8
Content-Language: en
Content-Length: 1047
Date: Sun, 20 Nov 2016 11:41:27 GMT




我缺少什么?

1 个答案:

答案 0 :(得分:1)

尝试不用" -I" - 也许服务器不支持HEAD(这将是一个严重的错误)。