我正在尝试使用 curl 将一些值发送到远程 URL。但是远程站点重定向到另一个页面,这给我带来了麻烦。
例如,我将值从 www.mywebsite.com 发送到 url www.domain.com/index.php,index.php 重定向到 fetch.php 文件,但问题是它像 www.mywebsite.com/fetch 一样打开。 php 这给了我 404 not found 错误,因为此文件位于远程站点上,而不是我的。我怎样才能解决这个问题
这是我正在使用的代码
$postfields = "link=xxxxxx";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'domain.com/index.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'rap.txt');
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
$content = curl_exec($ch);
curl_close($ch);