메인페이지 경로 index.php
본문
현재 사이트 주소가 예를 들면
applecar.com 인데
public_html/ppp/g5
이 위치에 그누보드 파일이 있어서
메인페이지를 열라면
applecar.com/ppp/g5 로 입력을 해야 됩니다.
public_html 안에 ppp/g5로 바로 갈수 있게
index 파일 만들려는데 어떻게 코딩 짜야 하나요?
답변 2
가장 깔끔 한건 사용 하시는 apache 나 nginx 에서 설정 해주시면 됩니다.
리다이렉팅 방식 이용시(페이지 이동처리)
public_html/index.php
<?php
header('Location : ppp/g5/');
?>
첫페이지를 바로 오픈처리시
public_html/index.php
<?php
include_once('ppp/g5/common.php');
include_once('ppp/g5/head.php');
?>
인덱스 페이지 내용
<?php
include_once('ppp/g5/tail.php');
?>
답변을 작성하시기 전에 로그인 해주세요.