curl请求指定host ip(指定域名解析的内网某ip)
Posted 三少~BackArchitect
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl请求指定host ip(指定域名解析的内网某ip)相关的知识,希望对你有一定的参考价值。
域名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)的主要内容,如果未能解决你的问题,请参考以下文章
如何在curl方式下url请求域名使用指定ip地址来访问某个服务器