こんにちは、サーバーにPHPファイルをアップロードしました。たとえば、ブラウザを使用してそのURLに到達する場合
mysite.com/test.php
PHPファイルのコード(コンテンツ)が表示され、スクリプトが実行されていないようです。
サーバーはF5BIG-IPApacheです
エラーの可能性を指摘していただけますか?
<?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;
}