우선 메인페이지(index.html, index.htm, index.php 등)를 다음과 같이 저장합니다.
<?
$channel = $channel ? $channel : "home";
// 지정한 파일이 없을 경우
if(!file_exists("page/$channel.php")) {
Header("Location: /?channel=missing");
}
// 페이지 본문
require("page/$channel.php");
?>
그리고 웹루트(public_html)에 page라는 폴더를 하나 만들어 각 메뉴페이지를 만들면 됩니다.
파일이름은 각 메뉴이름.php로 하면 되는것이죠.
즉
napclub.php
community.php
emoticon.php
musicncast.php
missing.php
등등..
으로 페이지를 만들어놓으면 됩니다.