Jump 방법: 1. "header('HTTP/1.1 302 Moved Permanently'); header('Location: URL address');" 문을 사용합니다. 2. "header('Location: URL',true,302 )를 사용합니다. " 성명.
이 튜토리얼의 운영 환경: Windows7 시스템, PHP7.1 버전, DELL G3 컴퓨터
PHP에서는 header()를 사용하여 302 점프를 달성할 수 있습니다.
방법 1:
header('HTTP/1.1 302 Moved Permanently'); header('Location: https://www.php.cn');
방법 2:
header('Location: https://www.php.cn', true, 302);
또한, HTTPS/HTTP에 적응하고 싶다면 다음과 같습니다:
header('Location: //www.php.cn', true, 302);
추천 학습: "PHP 비디오 튜토리얼 》
위 내용은 PHP에서 302 점프를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!