Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用HttpSendRequest()我可以从 MFC 导航到网页。我尝试访问的某些 URL 无效,但某些服务器没有发送错误 404,而是重定向到另一个页面。
我不确定如何检测此重定向。
404是“URL 完全未知”的 HTTP 状态代码。重定向是另一个状态码,301. 你可以通过HTTP_QUERY_STATUS_CODE.
404
301
HTTP_QUERY_STATUS_CODE
顺便说一句,这不是 MFC,而是基本的 WinInet 功能。