묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
주소창의 main/index.php에서 index.php를 없애려면?
2004.11.08 13:42
www/index.php파일에서
<script>location.href="main/index.php"</script>
로 해서..
main폴더 속의 index.php파일이 첫화면에 보이게 했습니다.
익스플로어에서 첫화면의 URL을 보면
www.myhome.com/main/index.php라고 뜹니다.
1.첫화면의 주소창에 www.myhome.com/main/ 까지만
나타나게 하려면 어떻게 해야하나요?
2.위치가 어디에서건 상관없이 모든 화면의 주소창에 www.myhome.com까지만
나타나게 하려면 어떻게 해야하나요?
<script>location.href="main/index.php"</script>
로 해서..
main폴더 속의 index.php파일이 첫화면에 보이게 했습니다.
익스플로어에서 첫화면의 URL을 보면
www.myhome.com/main/index.php라고 뜹니다.
1.첫화면의 주소창에 www.myhome.com/main/ 까지만
나타나게 하려면 어떻게 해야하나요?
2.위치가 어디에서건 상관없이 모든 화면의 주소창에 www.myhome.com까지만
나타나게 하려면 어떻게 해야하나요?
2.프레임을 이용하시면 됩니다..
[적용법]
<html>
<head>
<title>-_-;;</title>
</head>
<frameset rows="0, 100%" border="0">
<frame src="" scrolling="no" marginwidth="0" marginheight="0">
<frame src="처음에 보여질 사이트명">
<noframes>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p>이 페이지를 보려면, 프레임을 볼 수 있는 브라우저가 필요합니다.</p>
</body>
</noframes>
</frameset>
</html>
여기서 중요한것은 이소스를 작성하신후 저장을 index.html 또는index.php로 처리하셔야만 합니다. 그리고 메인 소스를 main.html또는 index.php(프레임을 index.html로 처리했을 경우)로 하셔도 상관 없구요..-_-;;