홈페이지 주소 고정 및 XE가 홈페이지 기본폴더에 설치되지 않고 xe폴더에 설치되었을 때 연결하는 방법이다.
물론 포워딩으로 연결하여도 된다.
http://도메인/xe/ 로 접속해야 하던 주소를 http://도메인 만으로 접속하게 된다.
또한 브라우저 상단에 도메인주소가 변하지 않고 그대로 고정되어 남아있게 된다.
아래의 청색부분의 내용을 작성하여 다른 이름으로 저장하기에서 파일 이름-index.php 파일 형식-*.* 인코딩-utf-8 로 저장한다.
ftp로 index.php를 웹의 기본 폴더에 업로드 한다.
주의
홈페이지 타이틀은 자신의 홈페이지 명을 적으면 된다.
/xe/ 부분은 XE가 설치된 폴더 경로와 폴더이름이다.
<!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>
추천 : 다크이브,
여기에서 행복한 시간 되십시오.
제가 지금까지 포워딩을 사용하여 왔는데요, 포워딩이 되어있어서 안되는 것인지요??
알려 준 대로 아래 처럼 index.php 를 만들었는 데 이 걸 /zbxe/ 안에 ftp 로 먼저 것을 덮어 쓰면 되겠죠?
<!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>고려대 68학번 교우회 </title>
</head>
<frameset rows="0%,100%" cols="*" border="0" framespacing="0">
<frame src="" scrolling="NO" frameborder="NO" name="no">
<frame src="/zbxe/index.php" frameborder="NO" name="main" marginwidth="0" marginheight="0" scrolling="auto">
</frameset>
<noframes>
</noframes>
<body>
</body>
</html>
기본 폴더의 index.html 이 있는 곳에 올려야 합니다.
zbxe 폴더 아래의 파일은 바꾸면 안됩니다.
감사합니다. 덕분에 주소고정은 잘 됩니다.
단지 logout 하면 페이지를 표시할 수 없다는 에러페이지 뜨고 새로고침 눌러줘야 정상적으로 로그아웃된 화면이 나옵니다.
참고로 ie8을 쓰고 있는데, 이때문인지는 잘 모르겠습니다.
위에처럼 php소스가 텍스트 에디터에서 보는것처럼 줄수까지 나오고 우측에 소스보기 프린터 아이콘등을 넣는것은 어떻게 구현하나요?