이 글에서는 PHP에서 웹페이지를 리디렉션하는 방법을 소개합니다. 도움이 필요한 친구들이 모두 참고할 수 있기를 바랍니다.
오늘은 사용자 로그인 기능을 할 때 리디렉션 페이지를 사용했는데 나중에 더 관심이 생겨서 심화 학습을 위한 세 가지 방법을 배우고 정리했습니다. 메모리.
첫 번째: 제가 가장 많이 사용하는 리디렉션 기능인 header() 함수를 사용하세요. (참고! locationhe와 ":" 사이에는 공백이 있으면 안 됩니다. 그렇지 않으면 아무런 효과가 없습니다!)
<?php header('content-type:text/html;charset=uft-8); //重定向页面 header('location:index.php'); ?>
두 번째: HTML 헤더의 메타 태그를 사용하여 http-equiv=refresh 및 content="시간을 정의하세요. 점프하는 데 소요되는 시간(초), url = 점프 주소”
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> //跳转页面,跳转时间:3秒钟,目标地址:index.php <meta http-equiv="refresh" content="3;url=index.php"> <title>skip...</title> </head>
또는
<?php header('content-type:text/html;charset=utf-8'); $url='index.php'; ?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> //跳转页面,跳转时间:2秒钟,目标地址:index.php <meta http-equiv="refresh" content="2;url=<?php echo $url; ?>"> <title>skip...</title> </head>
세 번째 방법: 자바스크립트를 사용하여 점프
<?php header('content-type:text/html;charset=utf-8'); $url='index.php'; //立即跳转至目标页面 echo <script>window.location.href='$url';</script>; ?>
위는 PHP에서 페이지를 리디렉션하는 세 가지 방법입니다.
추천 학습: php 비디오 튜토리얼
위 내용은 PHP에서 웹페이지를 리디렉션하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!