php實作重定向的方法:1、【header()】函數,程式碼為【header('location:http://www.baidu.com')】;2、meta標籤,程式碼為【echo '
php實作重定向的方法:
1、header()
函數;
header('location:http://www.baidu.com');
2、meta
標籤;
echo '<meta http-equiv="refresh" content="1;url=http://www.baidu.com">';
##3、script標籤;
echo '<script>window.location.href="http://www.baidu.com"</script>';
相關學習推薦:
以上是php如何實作重新導向?的詳細內容。更多資訊請關注PHP中文網其他相關文章!