1

Our intranet is accessed via https.

I'm looking to add some external widgets like weather to it but they're all accessed via http so whenever the main page loads the user's browser informs the user that only secure content is displayed with the option to "Show All Content"

Is there anyway around this or is there a more elegant solution?

Regards.

4

1 回答 1

2

浏览器警告说,即使该页面是通过 https 加载的,这意味着它是安全的,但由于 http 内容,它实际上并不安全。在大多数情况下,这是一个很好的警告,浏览器没有办法知道页面上什么是“重要的”,因此它必须警告这样的事情。示例:小部件可能是安全性不重要的天气小部件或安全性很重要的银行小部件,浏览器不知道。

如果安全无关紧要,唯一的修复是通过 http 加载页面,或者如果安全确实重要,则使用通过 https 加载的小部件。

于 2013-04-26T19:35:34.963 回答