我在Centos上使用php-5.6.30和Apache 2.2.15。我使用此代碼:每當我使用的URL喜歡http://www.example.com那麼它工作正常http://10.20.30.40:8001/index.html?uri=「URL HERE」 :
$uri = trim(urldecode($_REQUEST['uri']));
$validate_content = @file_get_contents($uri);
echo $validate_content;
我訪問它喜歡。但是,無論何時我使用URL如http://127.0.0.1:8000/App/app.html或http://10.10.10.40:9000/App/app.html它都會返回bool(false)。
當我在Windows WampServer(Apache 2.4.18 - PHP 5.6.19 - MySQL 5.7.11)上運行相同的代碼(以上代碼)並訪問它時。它工作正常。但是,當我使用在CentOS(阿帕奇2.2.15,PHP-5.6.17-3(CLI)是相同的代碼無法正常工作。
不工作得到同樣的錯誤/ –