본문 바로가기

HTML,CSS,JS

php 인클루드시 절대경로, 상대경로

php를 인클루드 할 때 절대경로와 상대경로는 표기형식이 다르다.

cafe24에서 상대경로로 사용시
<? include "common/inc/header.php" ?>

하지만 이것을 절대경로로 바꾸게 되면 풀경로를 써야된다.
cafe24에서 절대경로로 사용시
<? include "/home/hosting_users/gallerywoncokr/www/common/inc/header.php" ?>

더 간단히 정리하면
<? include $_SERVER["DOCUMENT_ROOT"]."/common/inc/header.php";?>