定义标头响应在 hiawatha 和 php 中不起作用
我有一个本地服务器和一个远程服务器。在本地服务器上我想做的事情有效,但远程服务器 hiawatha 却不起作用。
我正在尝试设置未找到的标头,然后使用登录页面进行响应。我正在使用以下代码来执行此操作
if($e === "ErrorSessionExpired")
{
header("HTTP/1.0 404 Not Found");
$output = $this->smarty->fetch("login.tpl");
echo $output;
exit();
}
正如我所说,这在使用 PhpED 嵌入式服务器的开发机器上运行良好
I have a local server and a remote server. On the local server what I'm trying to do works, but the remote server which is hiawatha doesn't.
I'm trying to set a not found header and then respond with the login page. I'm using the following code to do that
if($e === "ErrorSessionExpired")
{
header("HTTP/1.0 404 Not Found");
$output = $this->smarty->fetch("login.tpl");
echo $output;
exit();
}
As I said this works fine on the developing machine, which uses the embedded server of PhpED
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: