1、我们打开index.php文件 找到 require(dirname(__FILE__) . '/includes/init.php'); 的下面加上一条判断, if($_SESSION['user_id']<1){Header("Location: user.php");} 首页就可以实现如果没登录先登录,否则注册。 2、然后打开user.php,修改第300行 show_message($_LANG['login_success'] . $ucdata , array($_LANG['back_up_page'], $_LANG['profile_lnk']), array($back_act,'user.php'), 'info'); 为 show_message($_LANG['login_success'] . $ucdata , array('返回网站首页', $_LANG['profile_lnk']), array('index.php','user.php'), 'info'); 这样就可以了。
|