IIS 服务器,使用浏览器我得到 200 响应 - curl 我得到 302 响应

IIS 服务器,使用浏览器我得到 200 响应 - curl 我得到 302 响应

当我使用浏览器(chromium 或 firefox)访问页面时,我得到了预期的结果 - 200 个响应,并且它显示了我期望的信息。

当我使用 curl 时,我收到 302 响应:

$ curl http://........./Home/Healthcheck
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/Views/Shared/Error.aspx aspxerrorpath=/Home/Healthcheck">here</a>.</h2>
</body></html>

答案1

浏览器也有可能接收到 302,但随后会自动跟随链接到移动的位置。如果我没记错的话,你可以使用 --location 选项配置 curl 来执行相同操作。

相关内容