: 안녕하세요.. 다름이 아니라..
: 보통 웹서버 주소는 http://www.도메인.com/이렇게 되잖아요..
: 그런데 다른 페이지를 볼경우 http://www.도메인.com/read.html이라고 : 나타 납니다.
: 이것을 그냥 http://www.도메인.com/만 나타나게 할 수 있는지
: 그 방법을 가르쳐 주세요...
프레임을 사용하면 됩니다.
index.html을 이 내용으로 바꾸어 주세요.
<html>
<head>
<title>WWW.도메인.COM</title>
</head>
<frameset row='0,*' border=0 frameborder=0 noresize>
<frame src="/blank.htm'" name=invisibleframe>
<frame src="/read.html" name=main>
</frameset>
</html>
blank.html:
<html></html>