携梦远行 » curl 抓取跳转内容

携梦远行 » curl 抓取跳转内容

curl 抓取跳转内容

同事在用curl抓取图片时遇到nginx rewrite redirect 跳转,这时 curl -o a/xx.png http://xxx.xxx.com/190/180/ 无法抓取跳转后的内容

正确的做法, 添加-L:
curl -o a/xx.png -L http://xxx.xxx.com/190/180/

-L/–location Follow Location: hints (H)
–location-trusted Follow Location: and send auth to other hosts (H)

原文地址:https://www.cnblogs.com/lexus/p/2505414.html