如何在php中重定向另一个页面? [复制]

问题描述 投票:0回答:4

此问题已经在这里有了答案:

我想在用户填写我的登录表单时将用户重定向到另一个页面。我有一个index.php和login.php用于操作文件。如何使用php重定向?

php html forms action
4个回答
0
投票

如果您还没有在页面上写任何东西,这将起作用:

header( 'Location: http://www.yoursite.com/new_page.html' ) ;

如果有,则必须使用javascript进行重定向:

<script>window.location.href = "http://www.yoursite.com/new_page.html";</script>

0
投票

使用此

header( 'Location: http://www.yoursite.com/new_page.html' ) ;

header( 'Location: /somepage.php' ) ;

对于本地页面。


0
投票

在页面上打印任何HTML之前,请使用header函数告诉用户所发出请求的位置在其他位置,从而导致重定向到该页面。

header('Location: login.php');

0
投票

要重定向到另一个页面,请使用功能header

© www.soinside.com 2019 - 2024. All rights reserved.