Web Page Redirect
2024. 11. 11. 11:08ㆍProgramming/PHP
반응형
# 아주 기초적인 내용입니다. 하지만 필자는 돌아서면 까먹기에 적어봅니다.
# 리다이렉트는 특정 페이지에 접속하였을 경우, 다른 페이지에서 보여질 수 있도록 URL이 자동으로 변경되는 것을 말합니다.
<script>
window.location.replace("URL")
</script>
예시)
# redirect.html
<?php
header("Content-Type: text/html; charset=UTF-8");
$type = $_GET['kind'];
$no = $_GET['kindno'];
?>
<html>
<head>
<script>
window.location.replace("http://goodgods.com/examPage?type=<?=$type?>&no=<?=$no?>")
</script>
</head>
<body>
</body>
</html>
- "http://blog.goodgods.com/redirect.html?kind=home&kindno=10" 호출하였을 경우, "http://goodgods.com/examPage?type=home&no=no" 로 리다이렉트 되는 소스입니다.
반응형
'Programming > PHP' 카테고리의 다른 글
phpMyAdmin Error 2002 cannot log in to the mysql server (0) | 2024.11.09 |
---|---|
콘솔에서 phpinfo 확인하기 (0) | 2022.10.21 |
date 계산 (0) | 2016.05.26 |
Fatal error: Maximum execution time of 30 seconds exceeded (0) | 2015.10.22 |
error 메세지 출력 (0) | 2015.10.22 |