1

我正在使用以下脚本通过 file_get_contents 动态加载网站。

<?php 
header('Content-Type: text/html; charset=iso-8859-1');

$url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}";
$base_url = explode('/', $url);
$base_url = (substr($url, 0, 7) == 'http://') ? $base_url[2] : $base_url[0];

if (file_get_contents($url) != false) {

$content = @file_get_contents($url);

// $search = array('@(<a\s*[^>]*href=[\'"]?(?![\'"]?http))@', '|(<img\s*[^>]*src=[\'"]?)|');
// $replace = array('\1proxy2.php?url=', '\1'.$url.'/');
// $new_content = preg_replace($search, $replace, $content);


function prepend_proxy($matches) {
   $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}";
    $prepend = $matches[2] ? $matches[2] : $url;
    $prepend = 'http://h899310.devhost.se/proxy/proxy2.php?url='. $prepend .'/';

    return $matches[1] . $prepend . $matches[3];
}

function imgprepend_proxy($matches2) {
   $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}";
    $prepend2 = $matches2[2] ? $matches2[2] : $url;
    $prepend2 = $prepend2 .'/';

    return $matches2[1] . $prepend2 . $matches2[3];
}


$new_content = preg_replace_callback(
    '|(href=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i',
    'prepend_proxy',
    preg_replace_callback(
        '|(src=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i',
        'imgprepend_proxy',
        $content
    )
);

echo "<base href='http://{$base_url}' />";
echo $new_content;


} else {

  echo "Sidan kan inte visas";

}
?>  

现在的问题是一些图片没有显示在网站上。例如那些确实有 CSS 链接的网站。我认为这是一个 CSS 问题。

您可以在此处测试脚本以了解我的意思:

http://h899310.devhost.se/proxy/index.html

我怎样才能解决这个问题?

4

2 回答 2

2

您的 URL 替换方法之一似乎是添加了太多的斜线。访问您的代理提供的页面之一,您将看到几个以以下开头的 URL:

http:///www.msdn.com

以加载 msdn.com 为例;CSS 不会加载,因为在查看代理页面的源代码时,我们看到 CSS 的 URL 是(注意树正斜杠):

http://h899310.devhost.se/proxy/proxy2.php?url=http:///i3.msdn.microsoft.com/global/global-bn20090721.css

直接查看 URL 会在脚本中显示file_get_contents无法加载 URL 的警告:

Warning: file_get_contents(http:///i3.msdn.microsoft.com/global/global-bn20090721.css) [function.file-get-contents]: failed to open stream: No error in D:\users\u190790\h899310.devhost.se\Wwwroot\proxy\proxy2.php on line 9
Sidan kan inte visas

简要看一下您的代码,似乎问题出在$prepend; 它应该看起来像这样:

<?php
$prepend = $matches2[2] ? $matches2[2] : $url . '/';
$prepend = $prepend;
?>
于 2009-08-11T12:20:47.770 回答
1
header('Content-Type: text/html; charset=iso-8859-1');

这会将您的代理设置为仅显示文本;css 和图像不会通过您的代理加载(或者至少不会正确显示)。

于 2011-09-18T08:23:36.040 回答