使用$ _GET将图像从外部站点放在SSL后面

时间:2014-12-10 07:24:09

标签: php image proxy get

我想为我的论坛创建一个基本的图像代理,这样我就可以摆脱混合内容警告了。以下代码允许您转到" https://www.example.com/proxy.php?url=http://www.example.net/image.jpg"并通过https加载图像。有没有更安全的方式我可以做到这一点,我怎么能这样做只有服务器可以使用这个而不是其他网站?

$image = htmlentities($_GET['url']);
header('Content-Type: image/png');
if(isset($image)){echo file_get_contents($image);}

0 个答案:

没有答案