如何避免其他网站使用FRAMESET到我们的网站?

时间:2016-06-18 18:58:18

标签: javascript iframe url-redirection frameset

我想添加JavaScript,如果其他网站使用<frameset>帧,则会自动将该页面重定向到我的网站。

以下是我正在使用的代码,它运行良好:

if ( window.self !== window.top ) {
    window.top.location.href=window.location.href;
}

但我在我的网站上遇到了另一个问题:有些网页会被重定向到页面找不到!

像这样:http://www.example.com/themes/default/width:100%

我该如何解决这个问题?

0 个答案:

没有答案