도메인만 보이게 하기 ? 정보
도메인만 보이게 하기 ?본문
도메인만 보이게 하기 ?
초기 index.php 에 스크립으로 제어하는 방법 없나요 ?
iframe이했더니 익플8 아래 로딩바가 게속 움직이는군요
css3 가 문제인가 ....뭐가 문제인지...
http://address.com/g4/design/doc_1.php?doc=re_01/1
이렇게만 뜨던데
http://www.address.com/
이렇게 뜨는 방법 없나요 ?
고수님들 조언 부탁드립니다.
초기 index.php 에 스크립으로 제어하는 방법 없나요 ?
iframe이했더니 익플8 아래 로딩바가 게속 움직이는군요
css3 가 문제인가 ....뭐가 문제인지...
http://address.com/g4/design/doc_1.php?doc=re_01/1
이렇게만 뜨던데
http://www.address.com/
이렇게 뜨는 방법 없나요 ?
고수님들 조언 부탁드립니다.
댓글 전체

css3 는 IE10 부터 구현이 됩니다만... ^^
한국말은 참 어려워요, 그렇죠?
한국말은 참 어려워요, 그렇죠?
css문제가아닐듯한데요?
index.html 에서 index.php 을 호출하게 하면 됩니다. 아래는 index.html 내용입니다. 홈페이지 제목, charset 과 index.php가 있는 경로만 고치면 됩니다. 게시판에서 별도 링크로 웹브라우져를 열면 다시 경로가 보이지만 그렇지만 않으면 도메인 주소만 보이게 됩니다.
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr 또는 utf-8">
<title> 홈페이지 제목</title>
</head>
<frameset rows="0,*" cols="100%" border="0">
<frame name="header" scrolling="no" marginwidth="0" marginheight="0" target="main" border="0" align="center">
<frame name="main" scrolling="auto" marginwidth="0" marginheight="0" src="http://홈페이지 주소/그누보드 설치 디렉토리/index.php" border="0" >
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>이 페이지를 보려면, 프레임을 볼 수 있는 브라우저가 필요합니다.</p>
</body>
</noframes>
</frameset>
</html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr 또는 utf-8">
<title> 홈페이지 제목</title>
</head>
<frameset rows="0,*" cols="100%" border="0">
<frame name="header" scrolling="no" marginwidth="0" marginheight="0" target="main" border="0" align="center">
<frame name="main" scrolling="auto" marginwidth="0" marginheight="0" src="http://홈페이지 주소/그누보드 설치 디렉토리/index.php" border="0" >
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>이 페이지를 보려면, 프레임을 볼 수 있는 브라우저가 필요합니다.</p>
</body>
</noframes>
</frameset>
</html>