我在会话无效后使用php中的标题位置重定向到登录页面。
代码很简单。
PHP代码:
if($_SESSION['admin_id']){
header('location:login.php');
}
但问题发生了,虽然超时,我刷新浏览器在我的布局主框架中加载login.php。
这是我的框架集代码的布局。 HTML代码:
>>><frameset rows="135,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="index.php?action_type=top" name="topframe" scrolling="no" noresize="noresize" id="topframe" title="" />
<!--<fram src ="index.php?action_type=content" name="maiframe" scrolling="no" noresize="noresize" id="mainframe" />-->
<frameset cols="225,*" frameborder="no" border="0" framespacing="0">
<frame src="index.php?action_type=menu" name="menuframe" scrolling="no" noresize="noresize" id="menuframe" title="" />
<frame class="framebordertop" src="index.php?action_type=login-info" name="mainframe" scrolling="auto" noresize="noresize" id="mainframe" title="" />
</frameset>
</frameset>
<noframes>
</noframes>
答案 0 :(得分:1)
<?php
if( ....... ){ //if session is invalid
die("<script>
if(typeof(parent) != 'undefined'){
parent.window.location.href='login.php';
}else{
window.location.href='login.php';
}
</script>");
}
?>
试试这个?