Internet Explorer BHO 和 SSL
我开发了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该图标有一个
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 regularhttp
protocol for thatsrc
property, while the rest of the page useshttps
- 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.