Fenixrus, это правилна или нет?
<?
define('_IN_JOHNCMS', 1);
$rootpath = '../';
$headmod = '';
require_once ('../incfiles/core.php');
$textl='Заголовок';
require_once ('../incfiles/head.php');
switch ($user_id){
case true:
//код для авторизированных
header("Location:/users/profile.php");
break;
case false:
//код для не авторизированных
header("Location:/login.php");
break;
}
require_once ('../incfiles/end.php');
?>