SSL:通过 php 代理显示不安全的项目

发布于 2024-09-15 18:11:36 字数 660 浏览 5 评论 0原文

我的网站受 SSL (https) 保护,我需要嵌入一些不安全网站 (http) 上的图像。

如何避免在尝试显示未通过 https 传递的内容时收到的安全错误。

示例:http://0.chart.apis.google.com/chart?chtt=Answered+Calls&cht=bhs&chs=780x150&chbh=35,0,15& ;chg=8.33,0,5,5&chd=t:0,2&chco=4D89F9|C6D9FD&chf=bg,s,f8f8f8&chxt=x,y&chxl=1:|已回答|未回答&chds= 0,2&chxr=0,0,2

无论如何我可以通过代理传递它以避免错误???

My site is protected with SSL (https) I need to embed some images that are on an unsecured site (http).

How can I avoid the security errors recieved when trying to show content that was not delivered through https.

Example: http://0.chart.apis.google.com/chart?chtt=Answered+Calls&cht=bhs&chs=780x150&chbh=35,0,15&chg=8.33,0,5,5&chd=t:0,2&chco=4D89F9|C6D9FD&chf=bg,s,f8f8f8&chxt=x,y&chxl=1:|Answered|Unanswered&chds=0,2&chxr=0,0,2

Is there anyway I can pass this through a proxy to avoid errors???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反话 2024-09-22 18:11:36

将其放入名为“chart.php”的文件中,并将其用作图像的 src

<?php
echo readfile("http://0.chart.apis.google.com/chart?chtt=Answered+Calls&cht=bhs&chs=780x150&chbh=35,0,15&chg=8.33,0,5,5&chd=t:0,2&chco=4D89F9|C6D9FD&chf=bg,s,f8f8f8&chxt=x,y&chxl=1:|Answered|Unanswered&chds=0,2&chxr=0,0,2");
?>

Put this into a file called "chart.php" and use it as the image's src:

<?php
echo readfile("http://0.chart.apis.google.com/chart?chtt=Answered+Calls&cht=bhs&chs=780x150&chbh=35,0,15&chg=8.33,0,5,5&chd=t:0,2&chco=4D89F9|C6D9FD&chf=bg,s,f8f8f8&chxt=x,y&chxl=1:|Answered|Unanswered&chds=0,2&chxr=0,0,2");
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文