사이트주소.kr 을 입력했을 때 사이트주소.kr/g5로 자동으로 접속이 되게 하는 방법이 있을까요?
|
답변 3개
채택된 답변
+20 포인트
1년 전
최상위 경로에
index.html 파일 만드시고
/g5 로 리다이렉트 시켜버리시면됩니다.
<html>
<meta http-equiv="refresh" content="0; url=http://사이트주소.kr/g5"></meta>
</html>
1년 전
index.html 또는 index.php 에
Copy
<script>location.href = "/g5/";</script>
마르스컴퍼니
1년 전
* /index.php
Copy
<?php
header("Location: /g5/");
exit;
답변을 작성하려면 로그인이 필요합니다.