[제나플러스] 도메인별로 개별접속하기
본문
도메인별로 개별 접속하기
접근할 도메인과 폴더이름을 동일하게 마춰주신후
<?
$userdomain = $_SERVER['HTTP_HOST'];
$userdomainlink = str_replace("www.", "", $userdomain);
include_once("$zp[user_path]/$userdomainlink/index.php");
?>
접근할 도메인과 폴더이름을 동일하게 마춰주신후
<?
$userdomain = $_SERVER['HTTP_HOST'];
$userdomainlink = str_replace("www.", "", $userdomain);
include_once("$zp[user_path]/$userdomainlink/index.php");
?>
추천0
오스틴님의 댓글
오스틴쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일아 이렇게 간단한 방법으로 ... 감사합니다.