我在DreamHost上设置了一个简单的
登录页面.它不会让我把
PHP代码放在index.html
文件中.因此,当
用户提交电子
邮件地址时,我使用$_POST将电子
邮件地址提交给另一个
页面mail_auto.
PHP.
在看到快速“发送电子邮件”消息后,我希望用户从mail_auto.PHP被定向回index.html页面.
header()看起来有点复杂,似乎干扰了mail_auto.PHP余额的执行.
重定向用户的最佳方法是什么?
要将
用户重定向回index.html,请使用以下命令:
header('Location: index.html');
exit;
或者,如果要在屏幕上显示“重定向…”之类的内容,可以使用元刷新方法或使用setTimeout的JavaScript window.location方法
元刷新方法:
将其添加到HTML< head>:
<Meta http-equiv="refresh" content="2;url=index.html">
其中2是执行刷新前的秒数.
原文链接:https://www.f2er.com/php/134950.html