Internet Explorer BHO 和 SSL

发布于 2024-09-06 22:27:48 字数 117 浏览 3 评论 0原文

我开发了 IE 插件,它在页面上的每个链接后面添加一个图标。 但是,如果我在 https 网站上导航,则会收到 IE 已限制的消息...... 如果我尝试允许访问,IE 会再次显示该消息。 我该如何解决它或者我错在哪里?

I've developed IE plugin which adds an icon after each link on pages.
But, If I navigate on https sites then I get the message that IE has restricted.....
If I try to allow the access IE shows that message again.
How can I fix it or where am I wrong ?

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

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

发布评论

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

评论(1

就是爱搞怪 2024-09-13 22:27:48

该图标有一个 src 属性的 url。 IE 会抱怨,因为您对该 src 属性使用常规 http 协议,而页面的其余部分使用 https - 所以您的内容是不是来自安全站点。

要修复此问题,请确保您使用的 URL 与页面其余部分所提供的协议具有相同的协议 - 因此您需要将图像托管在启用了 https 的网站上。

The icon has a url for its src property. IE will be complaining because you are using regular http protocol for that src property, while the rest of the page uses https - so your content is not coming from a secure site.

To fix it, ensure that the url you use has the same protocol as what the rest of the page is delivered by - so you will need to host your images on an https enabled site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文