Как я могу перенаправить в PHP с этой настройкой ниже, не получая ошибок вывода заголовка, я понимаю, что ничего не может быть напечатано в браузере до того, как установлен заголовок, я ищу решение, а не объяснение, почему это происходит .
<?PHP
// include header
include ('header.inc.php');
// In my body section file if this is a page that requires a user be logged in then
// I run a function validlogin($url-of-page-we-are-on); inside of that file
//the function is below, it outputs a redirect to login page if not logged in
// include body of page we want
include ('SOME-FILE-HERE.php');
// include footer
include ('footer.inc.php');
// here is the function that is in the body pages, it is only called on a page that we require a logged in user so there are hundreds of pages that do have this and a bunch that don't, it's on a page to page basis
function validlogin($url) {
if ($_SESSION['auto_id'] == '') {
$msg = 'Please login';
$_SESSION['sess_login_msg'] = $msg;
$_SESSION['backurl'] = $url;
$temp = '';
header("Location: /");
exit();
}
}
?>
Я бы хотел использовать функцию заголовка php пользователя, а не перенаправление мета или javascript
Также ведение списка страниц, для которых требуется вход в систему или нет, здесь невозможно, если это возможно