我有一个在iframe中工作的网站,我希望它分解iframe,并重定向到另一个网站,带有自己url的整个新网站应该打开,而不是维护当前url或iframe。
我试过
<meta http-equiv="refresh" content="0"; URL="http://www.newsite.com/newurl.html">
and
header ('Location:http://www.newsite.com/');
他们不适合我。
试试这个:
<script type="text/javascript">
if (top.location!= self.location) {
top.location = 'http://www.newsite.com/';
}
</script>
如果这在iframe中运行,它将把父窗口重定向到http://www.newsite.com/
。