跳轉方法:1、用「header('HTTP/1.1 302 Moved Permanently');header('Location: URL位址');」語句;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中文網其他相關文章!