질문좀요
본문
index.php 로 접근하기전에 main.php 여기를 로그인페이지로 만드려고 하는데
홈페이지 abc.com 입장시 main.php 으로 이동되고 로그인후 index.php 로 이동되게 할수있을까요?
방법을 3시간째 찾아보았지만 관련글이 안보여서요^^
조언좀 부탁드립니다.^^
답변 3
index.php제일 위에
if(!$is_member)goto_url(G5_URL.'main.php');
mian.php제일위에
if($is_membet)goto_url(G5_URL.'index.php');
main.php
<?php
include_once('./_common.php');
if ($is_member) {
header('Location: index.php');
exit;
}
include_once(G5_PATH.'/head.sub.php');
include_once(G5_LIB_PATH.'/outlogin.lib.php');
include_once(G5_BBS_PATH.'/login.php');
?>
<?php
include_once(G5_PATH.'/tail.sub.php');
index.php의 if (!defined('_GNUBOARD_')) exit; 아래에 다음코드 추가
if(!$is_member)goto_url(G5_THEME_URL.'/main.php');
!-->!-->
extend/user.config.php
if ($is_member == false) {
//$subroot = '/subdir';
$subroot = '';
$allowed_urls = [
$subroot . '/main.php',
$subroot . '/bbs/login.php',
$subroot . '/bbs/login_check.php',
$subroot . '/bbs/register.php',
$subroot . '/bbs/register_form.php',
$subroot . '/bbs/register_form_update.php',
$subroot . '/plugin/kcaptcha/kcaptcha_image.php',
$subroot . '/plugin/kcaptcha/kcaptcha_session.php',
$subroot . '/plugin/kcaptcha/kcaptcha_mp3.php',
$subroot . '/bbs/ajax.mb_id.php',
$subroot . '/bbs/ajax.mb_nick.php',
$subroot . '/bbs/ajax.mb_email.php',
];
if (in_array($_SERVER['PHP_SELF'], $allowed_urls) == false) {
header('Location: ' . current($allowed_urls));
exit();
}
}
답변을 작성하시기 전에 로그인 해주세요.