http:// 를 https:// 로 이동하는 방법
header 를 이용하는 방식과 javascript 를 이용하는 방법을 안내합니다.
방식은 PHP 페이지 최상단에서 위치해야 정상 작동하며, 강력하게 작동합니다.
javascript는 페이지 상단이 아니어도 작동하지만, javascript를 제한한 경우에 작동하지 않습니다.
1. header location 이용
<?php
if($_SERVER['HTTPS'] != "on"){
$ssl_port = ""; // 443 포트를 사용하지 않는경우에 이용할 포트번호 입력
if ($ssl_port == "") {
$redirect_URL = "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
} else {
$redirect_URL = "https://".$_SERVER['HTTP_HOST'].":".$ssl_port.$_SERVER['REQUEST_URI'];
}
header("Location: ".$redirect_URL);
}
?>
2. javascript 이용
<?php
if($_SERVER['HTTPS'] != "on"){
$ssl_port = ""; // 443 포트를 사용하지 않는경우에 이용할 포트번호 입력
if ($ssl_port == "") {
$redirect_URL = "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
} else {
$redirect_URL = "https://".$_SERVER['HTTP_HOST'].":".$ssl_port.$_SERVER['REQUEST_URI'];
}
echo "<script type=\"text/javascript\">\n";
echo "<!--\n";
//echo "location.href = '". $redirect_URL ."';\n"; // 현재창으로 전송
echo "parent.location.href='". $redirect_URL ."';\n"; // 부모창으로 전송
echo "//-->\n";
echo "</script>\n";
}
?>
참고자료
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4766 | jQuery | 8년 전 | 1679 | ||
| 4765 | jQuery | 8년 전 | 1350 | ||
| 4764 | jQuery | 8년 전 | 2166 | ||
| 4763 | jQuery | 8년 전 | 1855 | ||
| 4762 | jQuery | 8년 전 | 1632 | ||
| 4761 | jQuery | 8년 전 | 1934 | ||
| 4760 | jQuery | 8년 전 | 1299 | ||
| 4759 | jQuery | 8년 전 | 1599 | ||
| 4758 | jQuery | 8년 전 | 1312 | ||
| 4757 | jQuery | 8년 전 | 1277 | ||
| 4756 | jQuery | 8년 전 | 1497 | ||
| 4755 | jQuery | 8년 전 | 1648 | ||
| 4754 | jQuery | 8년 전 | 1616 | ||
| 4753 | jQuery | 8년 전 | 1772 | ||
| 4752 | jQuery | 8년 전 | 1520 | ||
| 4751 | jQuery | 8년 전 | 1841 | ||
| 4750 | jQuery | 8년 전 | 1982 | ||
| 4749 | jQuery | 8년 전 | 1442 | ||
| 4748 | PHP | 8년 전 | 2811 | ||
| 4747 | jQuery | 8년 전 | 1392 | ||
| 4746 | jQuery | 8년 전 | 1648 | ||
| 4745 | jQuery | 8년 전 | 1655 | ||
| 4744 | jQuery | 8년 전 | 1536 | ||
| 4743 | jQuery | 8년 전 | 1614 | ||
| 4742 | jQuery | 8년 전 | 1706 | ||
| 4741 | jQuery | 8년 전 | 1598 | ||
| 4740 | jQuery | 8년 전 | 1608 | ||
| 4739 | jQuery | 8년 전 | 1798 | ||
| 4738 | jQuery | 8년 전 | 1314 | ||
| 4737 | jQuery | 8년 전 | 2098 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기