0

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

4

4 回答 4

0

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

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

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

<script>window.location.href = "http://www.yoursite.com/new_page.html";</script>
于 2013-10-11T18:09:15.857 回答
0

用这个

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

或者

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

对于本地页面。

于 2013-10-11T18:06:30.387 回答
0

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

header('Location: login.php');
于 2013-10-11T18:06:49.260 回答
0

重定向到另一个页面使用函数

于 2013-10-11T18:06:53.807 回答