当我使用这个(php)禁止他从我的聊天框中禁止他时,我试图重定向我的页面的用户:
header("location: index.php");
exit;
问题是 index.php 页面在已连接用户部分内打开,在这种情况下在div
内。如何重定向用户的主页?
感谢您的时间。
答案 0 :(得分:8)
在javascript代码中尝试此操作:
window.top.location.href = "http://www.site.com";
答案 1 :(得分:6)
这是使用javascript的答案:
window.parent.location = "http://www.example.com/index.php";