답변 4개
채택된 답변
+20 포인트
10년 전
'index.html' 파일을 새로 만들어 연결을 바꾸시려는 것이라면...
'mobile/index.php'를 참고하면 될 듯 합니다.
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
10년 전
데스크 탑에선 제가 페이징한 index.html를 보여주고,
모바일에서는
" index.php"를
보여주는 방법이 가능할까요...?
가능하다면 방법 좀 알려주시면 감사하겠습니다.
http://pensionto.com/index.html" target="_blank">http://pensionto.com/index.html 은 데스크탑으로 보여주고,
http://pensionto.com/index.php" target="_blank">http://pensionto.com/index.php 는 모바일용으로 보여주고 싶은데요....
부탁드립니다.
로그인 후 평가할 수 있습니다
답변에 대한 댓글 2개
f
fm25
10년 전
8
88층
10년 전
<?php
define('_INDEX_', true);
include_once('./_common.php');
// 초기화면 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
if ($config['cf_include_index'] && is_file(G5_PATH.'/'.$config['cf_include_index'])) {
include_once(G5_PATH.'/'.$config['cf_include_index']);
return; // 이 코드의 아래는 실행을 하지 않습니다.
}
// 루트 index를 쇼핑몰 index 설정했을 때
if(isset($default['de_root_index_use']) && $default['de_root_index_use']) {
require_once(G5_SHOP_PATH.'/index.php');
return;
}
if (G5_IS_MOBILE) {
include_once(G5_MOBILE_PATH.'/index.php');
return;
}
include_once('./_head.php');
?>
이쪽에서 변경하셔도 되구요..
common.php 들어가셔서 선언하시는 부분 변경하셔도 될듯합니다.
define('_INDEX_', true);
include_once('./_common.php');
// 초기화면 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
if ($config['cf_include_index'] && is_file(G5_PATH.'/'.$config['cf_include_index'])) {
include_once(G5_PATH.'/'.$config['cf_include_index']);
return; // 이 코드의 아래는 실행을 하지 않습니다.
}
// 루트 index를 쇼핑몰 index 설정했을 때
if(isset($default['de_root_index_use']) && $default['de_root_index_use']) {
require_once(G5_SHOP_PATH.'/index.php');
return;
}
if (G5_IS_MOBILE) {
include_once(G5_MOBILE_PATH.'/index.php');
return;
}
include_once('./_head.php');
?>
이쪽에서 변경하셔도 되구요..
common.php 들어가셔서 선언하시는 부분 변경하셔도 될듯합니다.
댓글을 작성하려면 로그인이 필요합니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
모바일은 원래 'mobile/index.php'에 연결되어 있구요.
아래 사이트에 그렇게 적용해 보았습니다.
http://liberta1980.woobi.co.kr
모바일로 접속을 하니... 주소즐에 아래와 같이 보여지네요.
http://liberta1980.woobi.co.kr/index.html?device=mobile
미리 만들어놓으신 html 파일을 적용하고자 하신다면...
'index.php'은 삭제하고 'index.php'의 상하단에 있는 소스를 복사해서 'index.html'에 붙혀넣으면 될 듯 합니다.