접속시 도메인을 자동으로 바꾸려면 어떻게 해야하죠?
본문
예를들어
http://www.도메인1.co.kr/qa/write.php?sst=wr_num&s_tag=
이라는 주소로 접속한 사람이 있으면
http://www.도메인2.co.kr/qa/write.php?sst=wr_num&s_tag=
로 자동으로 리다이렉트 되게 하고 싶습니다.
현재는
http://www.도메인1.co.kr/qa/write.php?sst=wr_num&s_tag=
http://www.도메인2.co.kr/qa/write.php?sst=wr_num&s_tag=
도메인이 둘다 같은 서버에 연결 되어있어서 따로 접속이 가능한 상태입니다.(같은 db를 사용하므로 안에 컨텐츠는 동일)
혹시 아시는분 있으면 답변 부탁드립니다 ㅠ
답변 2
if($_SERVER[HTTP_HOST]=="도메인1"){
header("Location: http://도메인2".$_SERVER['REQUEST_URI']);
exit;
}
도메인1에서 http:// 는 넣지 않습니다.
!-->
php
header("Location: http://mydomain.com/");
javascript
<script>
window.location = "http://www.mydomain.com/";
</script>
html
<meta http-equiv="refresh" content="0; url=http://mydomain.com/" />
답변을 작성하시기 전에 로그인 해주세요.