我在localhost中使用那个php代码并且工作正常
$ch = curl_init($src);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
当我将其移动到远程服务器时,脚本会忽略该代码
并没有给我一个结果(仍然给我原始网址)
注意:我在这里使用cURL给我重定向后的真实网址
答案 0 :(得分:0)
可能远程服务器的配置存在一些差异。
的phpinfo();
显示php和curl模块的配置