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.
我正在使用 idhttp 来获取网站的内容。获取内容后,网站会将网址从www更改为www8或www9或www10,例如:www.sample.com是发布前,发布后是www10.sample.com。如何得到它?谢谢你。
您遇到的可能是 HTTP 重定向。 如果其属性设置为 True,则 TIdHTTP自动处理重定向。有一个事件,因此您可以获得重定向到的新 URL,或者您可以查看属性(也可以通过一些非重定向响应来填充,例如通过 将文件上传到 Amazon S3 时)。HandleRedirectsTIdHTTPOnRedirectTIdHTTP.Response.LocationTIdHTTP.Put()
TIdHTTP
HandleRedirects
OnRedirect
TIdHTTP.Response.Location
TIdHTTP.Put()