묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[php] 초기화면에 주소/main.php가 뜨게 할려면 어떻게 해요?
2003.10.24 22:28
초보라서 질문합니다.
초기화면을 www.xxxx.de/에서 www.xxx.de/main.php로 바꿀려면 어떻게 하나요?
제가 html로 메인화면을 했다가 최근게시물을 넣어면서 html로 되지 않아 php로 바꾸었는데
일일이 http://www.xxxx.de/main.php로 써주지 않고 http://www.xxxxx.de로 치면
기존의 화면이 나오는데 어떻게하면 http://www.xxxxx.de 로 쳐도 http://www.xxxxxx.de/main.php
뜰까요? 하여튼 초기화면이 http://www.xxx.de/main.php 로 나오도록 가르쳐주세요!!!
프론트 페이지로 만든 홈피입니다.
부탁해요.
초기화면을 www.xxxx.de/에서 www.xxx.de/main.php로 바꿀려면 어떻게 하나요?
제가 html로 메인화면을 했다가 최근게시물을 넣어면서 html로 되지 않아 php로 바꾸었는데
일일이 http://www.xxxx.de/main.php로 써주지 않고 http://www.xxxxx.de로 치면
기존의 화면이 나오는데 어떻게하면 http://www.xxxxx.de 로 쳐도 http://www.xxxxxx.de/main.php
뜰까요? 하여튼 초기화면이 http://www.xxx.de/main.php 로 나오도록 가르쳐주세요!!!
프론트 페이지로 만든 홈피입니다.
부탁해요.
댓글 6
-
CROZ69
2003.10.24 23:23
-
CROZ69
2003.10.24 23:24
메인 페이지가 인덱스 페이지가 들어있는 같은 폴더(맨처음)에 있어야겠죠..^^
파일은 Welcome_to_Show100.php <-- 이거 수정해주시면.. -
동희
2003.10.24 23:43
CROZ69 님 너무 감사합니다. 제가 한번 실험해보고 보고를 드릴게요.... 친절하심에 다시한번 감사를 드립니다. -
동희
2003.10.25 00:20
CROZ69님 안되는데요. 이소스를 php 파일과 html파일에 모두 넣었는데 안되어요....
그리고 정확히 어디에 넣는건지 좀 가르쳐 주세요. 저 왕초보입니다. 다른분들도 좀 부탁드려요.
간단한 것 같은데.... 최근게시물게시판있는 분들 어떻게 하는지 가르쳐 주세요. php 아니고 html로 라도 되는 분 가르쳐 주세요. 저는 html 이 안되어요.... -
매직인터넷자이젠
2003.10.25 01:24
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=www.xxx.de/main.php">
이걸 인덱스페이지에 넣으셔두 될것 같네요.
그리구 윗님 말씀은요.
<script>
<!--
if (window!= top)
top.location.href=location.href;
// -->
</script>
<div style="position:absolute; left:0px; top:0px; width:1000px; height:1200px;
z-index:1; border-width:1px; border-style:none;">
<table border="0" cellpadding="5" cellspacing="0" width="100%">
<tr>
<td width="100%">
<div id="layer1" style="position:absolute; left:0px; top:0px; width:1000px; height:650px; z-index:1; border-width:1px; border-style:none;">
<script>self.parent.location.replace("main.php")</script>
이걸 인덱스페이지에 넣으란 말씀이세요 -
동희
2003.10.26 10:30
Croz69님과 매직인터넷님께 감사하다는 말씀을 드립니다. 제가 찬찬히 해보니까 두개다 되었습니다. 정말감사합니다. 그리고 매직 인터넷님의 것은 제가 약간 수정해서 하니까 되었습니다. 그러니까 요렇게 수정하니까 되었음.
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=main.php">
그런데 화면상의 움직임을 볼때 Croz69 님의 소스가 더 유용한 것 같습니다. 이상 감상문이었고
두분께 진심으로 감사를 드립니다. 제같은 초짜들 중에 이 소스를 유용하게 쓰실 분이 계실 것으로 믿습니다.....
미리 보기는 http://show-k.net제 홈페이지로 오시면 바로 보실듯...
<script>
<!--
if (window!= top)
top.location.href=location.href;
// -->
</script>
<div style="position:absolute; left:0px; top:0px; width:1000px; height:1200px;
z-index:1; border-width:1px; border-style:none;">
<table border="0" cellpadding="5" cellspacing="0" width="100%">
<tr>
<td width="100%">
<div id="layer1" style="position:absolute; left:0px; top:0px; width:1000px; height:650px; z-index:1; border-width:1px; border-style:none;">
<script>self.parent.location.replace("Welcome_to_Show100.php")</script>