5

我正在使用 curl 让 php 向某个网站发送一个 http 请求,并将 CURLOPT_FOLLOWLOCATION 设置为 1,以便它遵循重定向。那么,我怎样才能找出它最终被重定向到哪里呢?

4

4 回答 4

6

您可以执行以下操作:

curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); // returns the last effective URL
于 2009-11-06T15:11:22.597 回答
2
$ch = curl_init( "http://websitethatredirects.com" );
$curlParams = array(
   CURLOPT_FOLLOWLOCATION => true,
);
curl_setopt_array( $ch, $curlParams );
$ret = curl_exec( $ch );
$info = curl_getinfo( $ch );
print $info['url'];

这将显示您最终被重定向到的 URL。

于 2009-11-06T15:17:36.900 回答
0

测试这段代码。这对我来说可以 :

$urls = array(
    'http://www.apple.com/imac',
    'http://www.google.com/'
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

foreach($urls as $url) {
    curl_setopt($ch, CURLOPT_URL, $url);
    $out = curl_exec($ch);

    // line endings is the wonkiest piece of this whole thing
    $out = str_replace("\r", "", $out);

    // only look at the headers
    $headers_end = strpos($out, "\n\n");
    if( $headers_end !== false ) { 
        $out = substr($out, 0, $headers_end);
    }   

    $headers = explode("\n", $out);
    foreach($headers as $header) {
        if( substr($header, 0, 10) == "Location: " ) { 
            $target = substr($header, 10);

            echo "[$url] redirects to [$target]<br>";
            continue 2;
        }   
    }   

    echo "[$url] does not redirect<br>";
}
于 2016-03-25T11:25:30.547 回答
-1

如果您不需要最终的正文,您可以这样做:

设置CURLOPT_HEADERCURLOPT_NOBODY。应返回标头“Location”并将包含新的 url。然后在必要时使用新的 url 执行请求。

于 2009-11-06T15:09:50.697 回答