重定向到基本URL不起作用

时间:2013-05-01 22:57:38

标签: php

我需要让会员只能访问我的index.php页面。所以我的index.php文件开头的php脚本正在检查用户名是否在会话中,如果不是,它应该自动将用户重定向到我的login.php页面。 所以我的登录页面应该是BASE_URL页面。我在define ('BASE_URL', 'mywebsite.com/login.php');脚本中也做了verify.php。 但是当我导航到我的索引页面时,我只得到(空白屏幕)错误“第11行的脚本'path / index.php'发生错误:无法修改标题信息 - 已经发送的标题(输出从path / index开始)。 PHP:1)”。 我的HTML之前没有任何空格,这可能是原因。我还尝试使用head login.php中的“base_href”将BASE_URL设置为我的登录名,但是没有用。 这是我索引文件开头的脚本:

<?php 
require_once ('verify.php'); 
$page_title = 'title';
ob_start();
session_start();
if (!isset($page_title)) {
$page_title = 'title';}
if (!isset($_SESSION['name'])) {    
$url = BASE_URL . ''; 
ob_end_clean();
header("Location: $url ");
exit();
}
?>
<!DOCTYPE html><html><head></head><body></body></html>
<?php
ob_end_flush();
?>

我的verify.php内容:

<?php 
define('LIVE', TRUE);
define('EMAIL', 'my_mail');
define ('BASE_URL', 'mywebsite.com/login.php');
define ('MYSQL', 'db.php');
function my_error_handler ($e_number, $e_message, $e_file, $e_line, $e_vars) {
$message = "<p>An error occurred in script '$e_file' on line $e_line:      $e_message\n<br />"; 
$message .= "Date/Time: " . date('n-j-Y H:i:s') . "\n<br />";
$message .= "<pre>" . print_r ($e_vars, 1) . "</pre>\n</p>";
if (!LIVE) { echo '<div class="error">' . $message . '</div><br />';

} else {        
    mail(EMAIL, 'Site Error!', $message, 'From: you@youremail.com');
    if ($e_number != E_NOTICE) {
    echo '<div class="error">A system error occurred. We apologize for the inconvenience.</div><br />';
    }   }     } 
 set_error_handler ('my_error_handler');
 ?>

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。答案是在没有BOM的情况下以UTF8编码。