0

我使用这个 PHP 脚本作为代理。Serer A 上的相同脚本没有问题,在服务器 B 上它不起作用,我收到以下错误:

failed to open stream: HTTP request failed! HTTP/1.1 401 Unauthorized

 Cannot modify header information - headers already sent by

在服务器 B 上 allow_url_fopen = On

是设置

知道有什么问题吗?

谢谢

<?php
/*
 * in JavaScript call with `encodeURIComponent`
 * $.get('proxy.php?proxy_url='+encodeURIComponent('http://google.com?param=1&param2=2'))
 */
$url = rawurldecode($_GET['proxy_url']);
$cb = ! empty($_GET['callback']) ? $_GET['callback'] : null;

if(preg_match('#ccc\.aaa\.com/bbb/#', $url)){
    $url = preg_replace('#http\://xxx\.xxx\.com/xxx/#', '', $url);
}

if(! preg_match('#^https?:#', $url)){
    $url = preg_replace('#^[\.\/]+#', '', $url);

    if(!file_exists($url)){
        echo 'File not found';
        die(0);
    }
}

if(preg_match('#\.xml$#', $url)){
    header('Content-type: text/xml');
}

$file = file_get_contents($url);

if($cb){
    header('Content-type: application/javascript');
    echo $cb.'('.$file.');';

}else{
    echo $file;
}
4

0 回答 0