3

当我使用此(php)禁止他进入我的聊天框时,我试图重定向我页面的用户:

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

问题是index.php页面在已连接用户部分内打开,在本例中是在div. 如何重定向用户的主页?

谢谢你的时间。

4

2 回答 2

8

在 javascript 代码中试试这个:

window.top.location.href = "http://www.site.com";
于 2013-02-21T03:53:58.597 回答
6

这是使用javascript的答案:

window.parent.location = "http://www.example.com/index.php";
于 2013-02-21T03:35:33.567 回答