PHP Redirect,PHP header 跳转
PHP 中最优雅的跳转方法,只此一句:
header("Location: http://example.com/your_redirect_name.php");
清除所有代码,只保留这一句可以完成跳转。
也有人认为在结尾处加上 die()
或 exit()
,也就是如下:
header("Location: http://example.com/your_redirect_name.php");
die();
或
header("Location: http://example.com/your_redirect_name.php");
exit();
因为我们只保留一行 header
, 后面没有内容,所以 die()
和 exit()
纯属多余。