Index: /temp/trunk/data/lib/slib.php
===================================================================
--- /temp/trunk/data/lib/slib.php	(revision 6128)
+++ /temp/trunk/data/lib/slib.php	(revision 6147)
@@ -57,6 +57,6 @@
 			print("ok0");
 		if(!ereg("/install/", $_SERVER['PHP_SELF'])) {
-			//header("Location: ./install/");
-		}	
+			header("Location: ./install/");
+		}
 	} else {
 		$path = HTML_PATH . "install/index.php";
Index: /temp/trunk/data/conf/conf.php
===================================================================
--- /temp/trunk/data/conf/conf.php	(revision 6146)
+++ /temp/trunk/data/conf/conf.php	(revision 6147)
@@ -283,15 +283,16 @@
 /* URL */
 define ("URL_SHOP_TOP", SSL_URL . "shopping/index.php");			// ²ñ°÷¾ðÊóÆþÎÏ
-define ("URL_SITE_TOP", URL_DIR . "index.php");					// ¥µ¥¤¥È¥È¥Ã¥×
+define ("URL_SITE_TOP", URL_DIR . "index.php");						// ¥µ¥¤¥È¥È¥Ã¥×
 define ("URL_CART_TOP", URL_DIR . "cart/index.php");				// ¥«¡¼¥È¥È¥Ã¥×
-define ("URL_SHOP_CONFIRM", URL_DIR . "shopping/confirm.php");	// ¹ØÆþ³ÎÇ§¥Ú¡¼¥¸
-define ("URL_SHOP_PAYMENT", URL_DIR . "shopping/payment.php");	// ¤ª»ÙÊ§¤¤ÊýË¡ÁªÂò¥Ú¡¼¥¸
+define ("URL_MYPAGE_TOP", SSL_URL . "mypage/login.php");			// My¥Ú¡¼¥¸¥È¥Ã¥×
+define ("URL_SHOP_CONFIRM", URL_DIR . "shopping/confirm.php");		// ¹ØÆþ³ÎÇ§¥Ú¡¼¥¸
+define ("URL_SHOP_PAYMENT", URL_DIR . "shopping/payment.php");		// ¤ª»ÙÊ§¤¤ÊýË¡ÁªÂò¥Ú¡¼¥¸
 define ("URL_SHOP_COMPLETE", URL_DIR . "shopping/complete.php");	// ¹ØÆþ´°Î»²èÌÌ
-define ("URL_SHOP_CREDIT", URL_DIR . "shopping/card.php");		// ¥«¡¼¥É·èºÑ²èÌÌ
+define ("URL_SHOP_CREDIT", URL_DIR . "shopping/card.php");			// ¥«¡¼¥É·èºÑ²èÌÌ
 define ("URL_SHOP_LOAN", URL_DIR . "shopping/loan.php");			// ¥í¡¼¥ó·èºÑ²èÌÌ
 define ("URL_SHOP_CONVENIENCE", URL_DIR . "shopping/convenience.php");	// ¥³¥ó¥Ó¥Ë·èºÑ²èÌÌ
-define ("URL_PRODUCTS_TOP", URL_DIR . "products/top.php");		// ¾¦ÉÊ¥È¥Ã¥×
-define ("LIST_P_HTML", URL_DIR . "products/list-p");				// ¾¦ÉÊ°ìÍ÷(HTML½ÐÎÏ)
-define ("LIST_C_HTML", URL_DIR . "products/list.php?mode=search&category_id=");				// ¾¦ÉÊ°ìÍ÷(HTML½ÐÎÏ)
+define ("URL_PRODUCTS_TOP", URL_DIR . "products/top.php");				// ¾¦ÉÊ¥È¥Ã¥×
+define ("LIST_P_HTML", URL_DIR . "products/list-p");					// ¾¦ÉÊ°ìÍ÷(HTML½ÐÎÏ)
+define ("LIST_C_HTML", URL_DIR . "products/list.php?mode=search&category_id=");	// ¾¦ÉÊ°ìÍ÷(HTML½ÐÎÏ)
 define ("DETAIL_P_HTML", URL_DIR . "products/detail.php?product_id=");			// ¾¦ÉÊ¾ÜºÙ(HTML½ÐÎÏ)
 
Index: /temp/trunk/html/admin/mail/sendmail.php
===================================================================
--- /temp/trunk/html/admin/mail/sendmail.php	(revision 5934)
+++ /temp/trunk/html/admin/mail/sendmail.php	(revision 6147)
@@ -128,5 +128,5 @@
 	
 	if ($_GET['mode'] = "now") {
-		header("Location: /admin/mail/history.php");
+		header("Location: " . URL_DIR . "admin/mail/history.php");
 	}
 	echo "complete\n";
Index: /temp/trunk/html/admin/mail/index.php
===================================================================
--- /temp/trunk/html/admin/mail/index.php	(revision 6085)
+++ /temp/trunk/html/admin/mail/index.php	(revision 6147)
@@ -263,5 +263,5 @@
 		} else if( $_POST['mode'] == 'regist_complete' ){
 			lfRegistData($objPage->list_data);
-			header("Location: /admin/mail/sendmail.php?mode=now");
+			header("Location: " . URL_DIR . "admin/mail/sendmail.php?mode=now");
 			exit;			
 		}
Index: /temp/trunk/html/admin/logout.php
===================================================================
--- /temp/trunk/html/admin/logout.php	(revision 5934)
+++ /temp/trunk/html/admin/logout.php	(revision 6147)
@@ -10,5 +10,4 @@
 $objSess->logout();
 
-header("Location: /admin/index.php");
-
+header("Location: " . URL_DIR . "admin/index.php");
 ?>
Index: /temp/trunk/html/admin/design/index.php
===================================================================
--- /temp/trunk/html/admin/design/index.php	(revision 6085)
+++ /temp/trunk/html/admin/design/index.php	(revision 6147)
@@ -152,5 +152,5 @@
 		
 		$_SESSION['preview'] = "ON";
-		header("location: /preview/index.php");
+		header("location: ". URL_DIR . "preview/index.php");
 	}else{
 		header("location: ./index.php?page_id=$page_id&msg=on");
Index: /temp/trunk/html/admin/design/main_edit.php
===================================================================
--- /temp/trunk/html/admin/design/main_edit.php	(revision 6093)
+++ /temp/trunk/html/admin/design/main_edit.php	(revision 6147)
@@ -126,5 +126,5 @@
 	$_SESSION['preview'] = "ON";
 	
-	header("location: /preview/index.php");
+	header("location: " . URL_DIR . "preview/index.php");
 }
 
