http://도메인.net/gnuboard4/ 이렇게 쳐야 홈페이지에 들어가는데요..
ftp에
www
- gnuboard4
이렇게 돼있습니다.
http://도메인.net/
이렇게만 쳐도 사이트에 들어가게 하려면 어떻게 해야 하나요??
ftp에서 www 다음에 바로 다 풀어서 올리는 방법밖에 없나요?
www
- gnuboard4
이렇게 돼있습니다.
http://도메인.net/
이렇게만 쳐도 사이트에 들어가게 하려면 어떻게 해야 하나요??
ftp에서 www 다음에 바로 다 풀어서 올리는 방법밖에 없나요?
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 6개
그안에
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>타이틀<title>
</head>
<frameset rows="*,0" border=0>
<frame src="도메인주소/gnuboard4/index.php" frameborder=0 scrolling="yes">
</frameset>
</html>
하시면 도메인치면 그누보드폴더 안에 인덱스로 이동됩니다.
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>타이틀</title>
<script type="text/javascript">
location.href = "./gnuboard4/index.php"; <= 이 부분을 활용해 보세요.
</script>
</head>
<body>
<h1><a href="도메인명">제목</a></h1>
</body>
</html>
도메인주소/gnuboard4/index.php
이걸 그대로 써서 안 된다고 하신건가 ^^;
<?
header("Location:./gnuboard4/index.php");
?>