码迷,mamicode.com
首页 > Web开发 > 详细

curl请求指定host ip(指定域名解析的内网某ip)

时间:2017-03-21 18:26:45      阅读:678      评论:0      收藏:0      [点我收藏+]

标签:url   shel   nbsp   pre   host   set   bsp   header   com   

   

域名www.test.com解析内部多台ip
$httpHeader = array(‘Host: www.test.com‘);
$url = "10.17.2.245/xxx/xxx/t.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, $httpHeader);

curl_setopt($ch, CURLOPT_URL, $url);

SHELL:

curl --silent -H "Host: www.test.com" "192.168.0.1/xxx/xxx/t.php"

curl请求指定host ip(指定域名解析的内网某ip)

标签:url   shel   nbsp   pre   host   set   bsp   header   com   

原文地址:http://www.cnblogs.com/jking10/p/6595949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!