그누팁은 아니지만 도메인 별로 디렉토리 접속하기 > 그누4 팁자료실

그누4 팁자료실

그누보드4와 관련된 팁을 여러분들과 함께 공유하세요.
나누면 즐거움이 커집니다.

그누팁은 아니지만 도메인 별로 디렉토리 접속하기 정보

그누팁은 아니지만 도메인 별로 디렉토리 접속하기

본문

<?
if (stristr($_SERVER[HTTP_HOST], "www.abc.com")) {
echo "<meta http-equiv='refresh' content='0; url=http://abc.com'>";
exit;
}

if (stristr($_SERVER[HTTP_HOST], "www.efg.com")) {
echo "<meta http-equiv='refresh' content='0; url=http://efg.com'>";
exit;
}

if (stristr($_SERVER[HTTP_HOST], "www.abc.com")) { $toLink = "./main/default.htm"; }
else if (stristr($_SERVER[HTTP_HOST], "abc.com")) { $toLink = "./main/default.htm"; }

else if (stristr($_SERVER[HTTP_HOST], "www.efg.com")) { $toLink = "./shop/index.htm"; }
else if (stristr($_SERVER[HTTP_HOST], "efg.com")) { $toLink = "./shop/index.htm"; }

else { echo "잘못된 주소입니다!!"; exit; }
include $toLink;
?>
추천
6
  • 복사

댓글 15개

허접하지만 그래도 쓸모가 아주 많은 것 같아요. 물론 위 소스를 계정의 디폴트 파일로 만들어놓으면..
index.html , index.php , default.html 등등으로 올리고 도메인과 디렉토리 파일명을 수정하면 됩니다.
© SIRSOFT
현재 페이지 제일 처음으로