即使使用CURLOPT_FOLLOWLOCATION =>也无法阻止重定向false和safe_mode已关闭

时间:2014-07-23 09:32:53

标签: php redirect curl

注意:这不是重复,我一直在寻找解决方案近两天。

我有一个带有重定向的简单页面。即使CURLOPT_FOLLOWLOCATION设置为False,我也无法阻止重定向。

我的safe_mode已关闭

这是我的代码:

$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.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");
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_REFERER, "http://www.flickr.com/");
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type:application/x-www-form-urlencoded"));
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, FALSE);
echo curl_exec ($ch);

curl_close($ch); 

0 个答案:

没有答案