定义标头响应在 hiawatha 和 php 中不起作用

发布于 2024-11-06 13:37:25 字数 391 浏览 1 评论 0原文

我有一个本地服务器和一个远程服务器。在本地服务器上我想做的事情有效,但远程服务器 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城旧梦 2024-11-13 13:37:25

尝试:

header("Status: 404 Not Found");

Try:

header("Status: 404 Not Found");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文