쇼핑몰 도메인 연결하는 방법
페이지 정보
본문
쇼핑몰관리에서는 도메인 추가 넣은 기능이 없는 듯 한데.... 어떻게 하면 할 수 있나요?
댓글목록
제로님의 댓글
제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일
일단 호스팅에 도메인을 연결해 둡니다.
현제 root에 사용하는 index.php파일을 homeindex.php로 수정합니다..
개별 도메인을 설정합니다..
index.php
<?
/**
* ZENAPLUS
*
* Copyright (c) 2006-05-18 Park Gwan Su <www.zeronara.net>
* e-mail : [email protected]
* You are free: to Remix - to adapt the work
* Attribution : You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).
* Share Alike : If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.
* Nothing in this license impairs or restricts the author's moral rights.
**/
include_once("./_common.php");
if ($_SERVER['HTTP_HOST'] == 'xxx.com' || $_SERVER['HTTP_HOST'] == 'www.xxx.com') {
include_once("$g4[path]/homeindex.php");
}
else if ($_SERVER['HTTP_HOST'] == 'xxxmall.com' || $_SERVER['HTTP_HOST'] == 'www.xxxmall.com') {
include_once("$g4[path]/_shopindex.php");
}
else {
include_once("$g4[path]/Templates/$config[zncf_templates]/index.php");
}
?>