메인페이지 주소를 짧게하려는데 적용이 안돼요ㅠㅠ
본문
현재 메인페이지를 들어가면 주소가 https://xxx.com/bbs/page.php?hid=main_new으로 나옵니다.
index.php에서 header(Location: https://xxx.com/bbs/page.php?hid=main_new)를
header(Location: https://xxx.com)으로 바꾸면 리다이렉션 횟수가 많다고하면서 아예 페이지가 안뜹니다.
어떻게 해야할까요?
답변 1
https://xxx.com/bbs/page.php?hid=main_new -> https://xxx.com/ 로 무조건 이동시키게 하실려면
head.php 파일안에
<?php
if($_GET['hid'] == 'main_new') header('Location: https://xxx.com')
?>
넣어보세요.
답변을 작성하시기 전에 로그인 해주세요.