如果用户名不在会话中,我有.php
需要重定向到另一个网页(BASE_URL)的脚本,但它不起作用。有人可以帮忙吗?谢谢你。
在verify.php
脚本中定义BASE_URL,' http://www.mypage.com/login.html'.
我的脚本:
<?php
require_once ('verify.php');
$page_title = 'My page';
ob_start();
session_start();
if (!isset($page_title)) {
$page_title = 'Login';}
if (!isset($_SESSION['username'])) {
$url = BASE_URL . '';
ob_end_clean();
header("Location: $url ");
exit();
}
?>