답변 7개
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
제가 테스트 사이트에 그대로 코딩했으니 확인해 보세요.
http://wonoong.dothome.co.kr">http://wonoong.dothome.co.kr
답변을 채택해 주셔서 감사드립니다~! (_ _)
댓글을 작성하려면 로그인이 필요합니다.
답변에 대한 댓글 1개
<head>
<title>사이트 제목</title>
</head>
<frameset rows="1*, 0" cols="1*" border="0">
<frame name="top" scrolling="auto" marginwidth="0" marginheight="0" src="index.php">
<frame name="bottom" scrolling="no" marginwidth="0" marginheight="0" src="blank.html">
<noframes>
<body></body>
</noframes>
</frameset>
</html>
넹 햇는데 .. 로그인 부분 은 그냥 뒤에 /bbs..... 경로가 나와여 .. 머가 잘못된거죠 ??
댓글을 작성하려면 로그인이 필요합니다.
보통 index.html 파일명으로 만들어서 알려드린 코드로 작성하여 저장합니다.
빈페이지는 blank.html 파일명으로 만들어서 코드 없이 저장합니다.
같은 최상단 폴더에 메인페이지가 index.php 파일일 경우
index.html 페이지의 코드는 아래와 같습니다.
<html>
<head>
<title>사이트 제목</title>
</head>
<frameset rows="1*, 0" cols="1*" border="0">
<frame name="top" scrolling="auto" marginwidth="0" marginheight="0" src="index.php">
<frame name="bottom" scrolling="no" marginwidth="0" marginheight="0" src="blank.html">
<noframes>
<body></body>
</noframes>
</frameset>
</html>
답변에 대한 댓글 2개
하나요 ???
<head>
<title>사이트 제목</title>
</head>
<frameset rows="1*, 0" cols="1*" border="0">
<frame name="top" scrolling="auto" marginwidth="0" marginheight="0" src="/index.php">
<frame name="bottom" scrolling="no" marginwidth="0" marginheight="0" src="blank.html">
<noframes>
<body></body>
</noframes>
</frameset>
</html>
이렇게 하는거 맞나요 ?
댓글을 작성하려면 로그인이 필요합니다.
제가 운영하는 사이트에서는 아래 코드로 프레임을 나누어 처리하였습니다.
<html>
<head>
<title>사이트 제목</title>
</head>
<frameset rows="1*, 0" cols="1*" border="0">
<frame name="top" scrolling="auto" marginwidth="0" marginheight="0" src="메인페이지 파일 경로">
<frame name="bottom" scrolling="no" marginwidth="0" marginheight="0" src="빈 페이지 경로">
<noframes>
<body></body>
</noframes>
</frameset>
</html>
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
<head>
<title>사이트 제목</title>
</head>
<frameset rows="1*, 0" cols="1*" border="0">
<frame name="top" scrolling="auto" marginwidth="0" marginheight="0" src="/index.php">
<frame name="bottom" scrolling="no" marginwidth="0" marginheight="0" src="/blank.html">
<noframes>
<body></body>
</noframes>
</frameset>
</html>
이렇게 햇는데 로그인 부분이랑 주소 그냥 나와요.. ㅠㅠ