我想添加JavaScript,如果其他网站使用<frameset>
帧,则会自动将该页面重定向到我的网站。
以下是我正在使用的代码,它运行良好:
if ( window.self !== window.top ) {
window.top.location.href=window.location.href;
}
但我在我的网站上遇到了另一个问题:有些网页会被重定向到页面找不到!
像这样:http://www.example.com/themes/default/width:100%
我该如何解决这个问题?