避免 IE 中 http 和 https 弹出窗口冲突的最佳解决方案是什么?

发布于 2024-09-06 00:33:03 字数 84 浏览 5 评论 0 原文

避免 IE 中 http 和 https 弹出窗口冲突的最佳解决方案是什么? 我有很多安全连接页面,我在 IE 中遇到此弹出窗口,我想处理它,该怎么做?

What could be the best solution to avoid the conflict of http and https popups in IE?
I have many Secured connection pages where i face this popup in IE, I want to handle it how to do that?

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

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

发布评论

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

评论(2

勿挽旧人 2024-09-13 00:33:03

尽可能使用相对 URL,您甚至可以使用 协议相对 URL

<img src="/myimg.png" alt="This domain" />
<img src="//www.myotherdomain.com/myimg.png" alt="Other domain" />

:这样,您就可以确保您的页面不会包含来自非安全协议的内容。

Use relative URLs where possible, you can even have protocol relative URLs:

<img src="/myimg.png" alt="This domain" />
<img src="//www.myotherdomain.com/myimg.png" alt="Other domain" />

This way, you can be sure your pages will not contain content from a non-secure protocol.

瘫痪情歌 2024-09-13 00:33:03

您的意思是弹出窗口警告您页面同时包含安全和非安全元素吗?

如果是这样,解决它的唯一方法是保护非安全部分,即,如果您链​​接到图像,请将源从“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.

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