[PHP] 인터넷 상단 주소 고정하기
-
웹스터디 / 2011.06.22 00:11 / hit 5,254 추천 0
- index.php (366byte) (0) DATE : 2011-06-22 00:12:21
현재 그누보드 index.php파일을 index1.php로 변경을 하고
index.php에 아래와 같이 입력을 하시면 됩니다.
<?
define("_MW_INDEX_", TRUE); // index 파일
include_once("./_common.php");
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=<?=$g4['charset']?>">
<title><?=$g4['title']?></title>
<frameset rows="1*">
<frame src="<?=$g4['path']?>/index1.php" marginwidth="0" marginheight="0">
</frameset>
</head>
index.php에 아래와 같이 입력을 하시면 됩니다.
<?
define("_MW_INDEX_", TRUE); // index 파일
include_once("./_common.php");
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=<?=$g4['charset']?>">
<title><?=$g4['title']?></title>
<frameset rows="1*">
<frame src="<?=$g4['path']?>/index1.php" marginwidth="0" marginheight="0">
</frameset>
</head>
자신의 홈피에 맞게 빨간 부분 변경