HTTPS 页面上的 HTTP iframe

发布于 2024-12-29 05:29:08 字数 76 浏览 1 评论 0原文

我有一个简单的问题,但找不到我正在寻找的答案。

在安全 https 页面上加载的 http iframe 是否也受到保护?

I have a simple question, but can't find the answer that I'm looking for.

Is a http iframe that's loaded on a secure https page also secured?

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

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

发布评论

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

评论(2

滥情空心 2025-01-05 05:29:08

具有 http 源的 iframe 不会显示在 https 网站上,因为它被视为混合内容,并且 Chrome 等浏览器将阻止该内容并显示以下消息:

混合内容:“您的网站”页面是通过 HTTPS 加载的,
但请求了不安全的资源“iframe http 源”。这
请求已被阻止;内容必须通过 HTTPS 提供。

到目前为止我还没有看到允许混合内容的解决方案。
Firefox 有一个解决方案,该解决方案基于通过 HTTPS 域上托管的另一个网站重定向 iframe 源。

A iframe with http source will not be displayed on a https website as it's considered mixed content and browsers like Chrome will block the content with the following message:

Mixed Content: The page at 'your website' was loaded over HTTPS,
but requested an insecure resource 'iframe http source '. This
request has been blocked; the content must be served over HTTPS.

So far I have not seen a solution to allow mixed content.
There has been a solution for Firefox which is based on redirecting the iframe source via another website that is hosted on the HTTPS Domain.

泼猴你往哪里跑 2025-01-05 05:29:08

它不是自动的,您应该验证 iframe 的 src 是否通过 https 连接:

<iframe src="http://www.example.com"></iframe> 

您的 iframe 不会扩展主页面的 https 访问。

It is not automatically, you should verify if the src of your iframe is connecting via https or not:

<iframe src="http://www.example.com"></iframe> 

your iframe doesn't extend the https access from principal page.

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