以编程方式禁用浏览器安全/不安全内容提示
我们有一个在 HTTPS 上建立的 sharepoint 2007 站点。该网站有许多页面,其中包含从其他网站引用的外部内容,而这些网站未在 https 上设置。内容是一些 RSS 提要、图像等。现在,每当用户打开共享点网站时,浏览器都会提示用户是否想要查看不安全的内容。我们拥有非常庞大的用户群,我们无法进入每台计算机并设置浏览器设置以显示不安全的内容或将站点添加到受信任区域。有什么方法可以让我们以编程方式使浏览器显示不安全的内容吗?可能使用活动 x 或其他东西?请让我知道这个问题的可能解决方案是什么。
We have a sharepoint 2007 site which has been set up on HTTPS. this site has many pages which have external content referenced from other sites which are not setup on https. The content is some rss feeds, images and the like. Now whenever the user opens the sharepoint site it gets a prompt from the browser saying if the user wants to see the insecure content or not. We have a very huge user base and we cannot go to every machine and set the browser settings to show the insecure content or add the site to the trusted zone. is there some way in which we can programmatically enable the browser to show the insecure content? Possibly using either an active x or something ? Please let me know what could be a possible solution to this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的系统位于域中并运行 IE,则可以使用组策略对象来执行此操作。
某些 IE 设置中的 GPO 注册表项:http://technet. microsoft.com/en-us/library/cc775996(WS.10).aspx
If your systems are on a domain and running IE, you can probably do this with Group Policy Objects.
GPO registry keys from some IE settings: http://technet.microsoft.com/en-us/library/cc775996(WS.10).aspx
您可以使用自己的 Web 服务器作为代理,这里是一个可能的示例。我还没有测试过,只是在谷歌上第一次点击它。我不太习惯 IIS 上的代理,但已经在 apache 上使用过
mod_proxy
。然后,您可以通过 https: 代理将所有流量路由到外部站点,并避免客户端上出现警告。
在我看来,这有两个主要优点:
You could use your own web server as a proxy, one possible example here. I haven't tested it, just took the first hit it in google. I'm not very used to proxying on IIS but have already used
mod_proxy
on apache.You would then route all the traffic to external sites through your https: proxy and avoid the warning on the clients.
In my eyes, this has two majour advantages:
编辑 XSL 代码。将“GetSafe.html”替换为此。
Edit the XSL Code. Replace "GetSafe.html" with this.