避免 IE 中 http 和 https 弹出窗口冲突的最佳解决方案是什么?
避免 IE 中 http 和 https 弹出窗口冲突的最佳解决方案是什么? 我有很多安全连接页面,我在 IE 中遇到此弹出窗口,我想处理它,该怎么做?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
避免 IE 中 http 和 https 弹出窗口冲突的最佳解决方案是什么? 我有很多安全连接页面,我在 IE 中遇到此弹出窗口,我想处理它,该怎么做?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
尽可能使用相对 URL,您甚至可以使用 协议相对 URL
:这样,您就可以确保您的页面不会包含来自非安全协议的内容。
Use relative URLs where possible, you can even have protocol relative URLs:
This way, you can be sure your pages will not contain content from a non-secure protocol.
您的意思是弹出窗口警告您页面同时包含安全和非安全元素吗?
如果是这样,解决它的唯一方法是保护非安全部分,即,如果您链接到图像,请将源从“http://www.testurl.com/image1.jpg" 为“https://www.testurl.com/image1.jpg"。 (注意 HTTP 末尾的 s)。
最后,如果您的问题是识别不安全的对象,您可以使用 Fiddler 等应用程序,它将显示 HTTP 和 HTTPS 请求的对象。
Do you mean the popup that warns you of your page having both secure and non-secure elements?
If so the only way to solve it is to secure the non-secure parts, i.e. if you're linking to an image change the source from "http://www.testurl.com/image1.jpg" to be "https://www.testurl.com/image1.jpg". (Note the s on the end of the HTTP).
Finally if your problem is identifying the objects that are non-secure you can use an application such as Fiddler which will show objects requested by HTTP and HTTPS.