diff --git a/shop/_head.php b/shop/_head.php
index fe9024ae1..c3e0a4a26 100644
--- a/shop/_head.php
+++ b/shop/_head.php
@@ -1,4 +1,4 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
-include_once(G4_PATH.'/shop.head.php');
+include_once(G4_SHOP_PATH.'/shop.head.php');
?>
\ No newline at end of file
diff --git a/shop.php b/shop/index.php
similarity index 94%
rename from shop.php
rename to shop/index.php
index b81c99afa..c471117a1 100644
--- a/shop.php
+++ b/shop/index.php
@@ -3,10 +3,10 @@ include_once("./_common.php");
include_once(G4_LIB_PATH.'/latest.lib.php');
include_once(G4_LIB_PATH.'/thumbnail.lib.php');
-define("_INDEX_", TRUE);
+define("G4_SHOP_INDEX", TRUE);
-$g4['title'] = "";
-include_once(G4_PATH.'/shop.head.php');
+$g4['title'] = $default['de_admin_company_name'];
+include_once('./_head.php');
?>
@@ -99,7 +99,7 @@ include_once(G4_PATH.'/shop.head.php');
-include G4_SHOP_PATH.'/newwin.inc.php'; // 새창띄우기
+include_once(G4_SHOP_PATH.'/newwin.inc.php'); // 새창띄우기
-include_once(G4_PATH.'/shop.tail.php');
+include_once('./_tail.php');
?>
\ No newline at end of file
diff --git a/shop.head.php b/shop/shop.head.php
similarity index 100%
rename from shop.head.php
rename to shop/shop.head.php
diff --git a/shop.tail.php b/shop/shop.tail.php
similarity index 100%
rename from shop.tail.php
rename to shop/shop.tail.php