홈페이지 주소 경로 줄이는 법좀 알려주세요. (도메인 유지) 정보
홈페이지 주소 경로 줄이는 법좀 알려주세요. (도메인 유지)본문
홈페이지 주소 경로를 도메인으로 계속 유지시키려면 어떻게 해야하죠?
방법좀 알려주세요///
예>http://www.sir.co.kr/bbs/write.php?bo_table=g4_qa <--- 이거 말고
http://www.sir.co.kr <--- 계속
댓글 전체
프레임 나누면 되는거 아닌가요 ?
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>타이틀!</title>
</head>
<frameset rows="*,0" framespacing="0" border="0" frameborder="0">
<frame name="main" src="main.php" scrolling="auto" noresize>
<frame name="footer" scrolling="no" noresize src="" target="main">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>타이틀!</title>
</head>
<frameset rows="*,0" framespacing="0" border="0" frameborder="0">
<frame name="main" src="main.php" scrolling="auto" noresize>
<frame name="footer" scrolling="no" noresize src="" target="main">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
main.php를 수정하여서 사용하세요