将帧重定向到https?

时间:2014-08-24 02:53:10

标签: php html css redirect

我在我的网页www.interimincomemodel.info上使用了一个框架代码,但是当一个框架页面应该将用户带到Google页面时,当涉及到视频3的一部分时,Firerox只会显示一个空白页和IE表示"无法在框架中显示内容"。

我发现一个框架无法显示https内容。所以我的问题是,我应该在代码中添加什么来使框架重定向到Google页面?

如何使用html指示浏览器,以便当用户点击链接时说https://www.google.com内容未显示在框架中但必须将域重定向到https://www.google.com

有没有任何代码可以做到这一点?

以下是我使用的代码:

<html>
    <head>
    <meta http-equiv='content-type' content='text/html; charset=UTF-8'>
    <meta name="VERSION" content="">
    <meta name="DATA" content="">
    <link href="http://www.interimincomemodel.info/favicon.ico" rel="shortcut icon" type="image/x-icon">
    <title>Interim Income Model</title>
    </head>
    <frameset rows='100%' frameborder=no framespacing=0 border=0>
    <frame src="http://interimincomemodel.com/reps/eugeny/" name=mainwindow frameborder=no framespacing=0 marginheight=8 marginwidth=0></frame>
    </frameset>
    <noframes><h2>Your browser does not support frames. We recommend upgrading your
    browser.</h2><br><br>
    <center>Click <a href="http://interimincomemodel.com/reps/eugeny/" >here</a> to enter the site.</center>
    </noframes>
    </html>

由于

1 个答案:

答案 0 :(得分:0)

Google的大多数网站都设置了X-Frame-Options标头,这样就无法在框架中显示它们。这不能被覆盖 - 您需要找到一个替代解决方案,例如链接到站点而不是尝试构建它。

(您尝试通过HTTPS加载的网站是红色鲱鱼的事实。)