可能重复:
PHP page redirect
我有0次PHP经验。我在wordpress中建立了一个用PHP开发的博客。
在页面中有包含。现在,我将用户从页面重定向到另一个。
例如:当用户访问pics.php时,我想将它们重定向到Gallery.php
答案 0 :(得分:1)
请参阅header:
header('Location: http://domain.com/Gallery.php');
答案 1 :(得分:1)
您可以通过header()
功能重定向用户浏览器:
header( "Location: gallery.php" );
您需要确保在此行之前未发送任何输出(检查echo
和print
语句,以及可能产生错误或警告的任何内容。
答案 2 :(得分:0)
阅读header手册。
如果 Location 标题被修改,浏览器将向指定的URL发出新请求。
答案 3 :(得分:0)
header('Location: /Gallery.php');
答案 4 :(得分:0)
只需使用
header('Location: /pics.php');
或
header('Location: http://www.mydomain.com/header.php');