如何将URL重定向到父iframe

时间:2013-02-20 16:34:06

标签: php javascript

当我使用这个(php)禁止他从我的聊天框中禁止他时,我试图重定向我的页面的用户:

header("location: index.php");
exit;

问题是 index.php 页面在已连接用户部分内打开,在这种情况下在div内。如何重定向用户的主页?

感谢您的时间。

2 个答案:

答案 0 :(得分:8)

在javascript代码中尝试此操作:

window.top.location.href = "http://www.site.com";

答案 1 :(得分:6)

这是使用javascript的答案:

window.parent.location = "http://www.example.com/index.php";