用戶登錄功能時往往需要重定向頁面,那么在PHP中如何重定向頁面?下面本篇文章給大家介紹三種重定向網(wǎng)頁跳轉(zhuǎn)頁面的方法。
第一種:利用header()函數(shù)進行重定向,這也是我用的較多的。(注意!locationhe和“:”之間不能有空格,否則無作用!)
<?php header('content-type:text/html;charset=uft-8); //重定向頁面 header('location:index.php'); ?>
第二種:利用HTML 頭部中的 meta標簽,定義http-equiv=refresh 和content=”跳轉(zhuǎn)花費的時間(秒為單位);url=跳轉(zhuǎn)地址”
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> //跳轉(zhuǎn)頁面,跳轉(zhuǎn)時間: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"> //跳轉(zhuǎn)頁面,跳轉(zhuǎn)時間:2秒鐘,目標地址:index.php <meta http-equiv="refresh" content="2;url=<?php echo $url; ?>"> <title>skip...</title> </head>
第三種:利用javascript進行跳轉(zhuǎn)
<?php header('content-type:text/html;charset=utf-8'); $url='index.php'; //立即跳轉(zhuǎn)至目標頁面 echo <script>window.location.href='$url';</script>; ?>