묻고답하기
왕초보 질문 한개 드립니다. 부디..외면 하지마시고..
2010.08.18 14:11
카페24에 호스팅신청하고..
임시로 주어진 도메인 www/xe폴더 설치하고.. 홈피를 만들고 있습니다.
www/index.html 파일이 있었는데.. 초기화 시키면서.. 모두 지우고 다시 xe설치해서..만들고 있는 중입니다.
제가 알고 싶은 것은..
http://hyg1645.cafe24.com/xe/ 를 입력하면.. 메인화면이 나오는데..
http://hyg1645.cafe24.com 만 입력해도 메인화면이 나타나게 하는 방법을 알려주세요.
기초적인 질문이지만, 모르는 사람에게는 무지 답답한 내용이지요..
구체적으로 쉽고 상세하게 설명해주시면 고맙겠습니다.
댓글 3
-
하늘종
2010.08.18 14:14
-
한용길
2010.08.18 14:25
다른방법은 없나요? 예를들면.. index.html 파일을 만들어 연결하게하는방법이라든지..기초가 없어요..ㅠ.ㅠ -
한용길
2010.08.18 14:26
카페24에 물어보니..다짜고짜.. index파일 한개 만들어 www 폴더안에 넣고 연결하라고 하더라구요.. 구체적으로 알려달라고 하니까.. 그렇게밖엔 설명 할수가 없다네요..ㅠ.ㅠ -
비비디 바비디 부
2010.08.18 16:52
xe 파일들이
www/xe 안에 있는 상황이죠?
이걸
www에 바로 업로드해보세요
-
청범( 靑凡)
2010.08.18 18:44
휘즈님 ( http://www.phiz.kr/main/851) 의 팁입니다.
XE를 설치시 웹서버의 document root에 설치하지 않고
http://도메인/xe 로 설치할 때 http://도메인/ 으로 연결하는 방법
1. 도메인포워딩
document root에 다음과 같이 index.html을 만든다.<html><head>
<meta http-equiv=Refresh content=0;url=http://MyDomain.co.kr/xe>
<title>홈페이지 타이틀</title>
</head>
<body>
</body>
</html>
이경우 주소창에는 http://MyDomain.co.kr/xe 로 보이게 된다.
2. 프래임사용
document root에 다음과 같이 index.html을 만든다.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="{Context::getLangType()}" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<title>홈페이지 타이틀</title>
</head>
<frameset rows="0%,100%" cols="*" border="0" framespacing="0">
<frame src="./scrolling="NO" frameborder="NO" name="no">
<frame src=".//xe/index.php" frameborder="NO" name="main" marginwidth="0" marginheight="0" scrolling="auto">
</frameset>
<noframes>
</noframes>
<body>
</body>
</html>
주소창에는 항상 http://MyDomain.co.kr/ 로 보이게 된다.
www/xe 폴더 안에 설치하는 것 대신에, www(최상위폴더) 안에 바로 설치해보세요.