1

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

<?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');
 ?>
4

1 回答 1

0

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

于 2013-05-01T23:40:51.780 回答