-2

您好已在服务器上上传了一个 PHP 文件。例如,使用浏览器访问该 URL 时

mysite.com/test.php

我看到 PHP 文件的代码(内容)并且脚本似乎没有运行。

服务器是 F5 BIG-IP Apache

你能指出我可能是什么错误吗?

<?php

$url = rawurldecode($_GET['proxy_url']);
$cb = ! empty($_GET['callback']) ? $_GET['callback'] : null;

if(preg_match('#xxx\.xxx\.com/xxx/#', $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

3 回答 3

0

关闭 php 标签并检查服务器是否支持 php

于 2013-03-01T12:30:10.500 回答
0

您的服务器未设置为解析 PHP 脚本,请检查它是否安装了 PHP

于 2013-03-01T12:30:36.810 回答
0

你安装PHP了吗?- 如果是,请执行以下操作:

  1. 从尝试一个简单的脚本开始 - 称它为 info.php:

  2. 确保(假设是 Apache)你已经配置了 Web 服务器 - 请参阅http://php.net/manual/en/install.php

如果这一切正常,那么脚本就有问题。

于 2013-03-01T12:30:39.027 回答