회원가입 url 이동이안돼요..
본문
현재 페이지제작중인데 pc페이지 모바일페이지 따로따로 제작을 해서 로그인폼까지 연결을 시켰는데 로그인안의있는 회원가입을 누르면 register.php 연결이되야하는데 pc페이지는 연결이 돼고 모바일페이지에서는 엉뚱한 http://m.beauluv.kr/bbs/beauluv_m/index.html beauluv_m/index.html 있지도않은 url로 자꾸연결이돼는데 해결방법좀 알려주세요 ㅠㅠ
아래는 login.php파일입니다.
<?php
include_once('./_common.php');
if( function_exists('social_check_login_before') ){
$social_login_html = social_check_login_before();
}
$g5['title'] = '로그인';
include_once('./_head.sub.php');
$url = strip_tags($_GET['url']);
// url 체크
check_url_host($url);
// 이미 로그인 중이라면
if ($is_member) {
if ($url)
goto_url($url);
else
goto_url(G5_URL);
}
$login_url = login_url($url);
$login_action_url = G5_HTTPS_BBS_URL."/login_check.php";
// 로그인 스킨이 없는 경우 관리자 페이지 접속이 안되는 것을 막기 위하여 기본 스킨으로 대체
$login_file = $member_skin_path.'/login.skin.php';
if (!file_exists($login_file))
$member_skin_path = G5_SKIN_PATH.'/member/basic';
include_once($member_skin_path.'/login.skin.php');
include_once('./_tail.sub.php');
?>