如何使用打字稿发送 HTTP 状态代码?

发布于 2024-12-12 04:55:17 字数 130 浏览 0 评论 0原文

当满足某些条件时,我想向用户发送“403 Forbidden”HTTP 状态代码,但我在打字稿中找不到任何修改 HTTP 标头的可能性。我是否遗漏了一些东西,或者这对于打字稿来说真的不可能吗?

我正在使用 Typo3 4.5.6。

When certain conditions meet I'd like to send the user a "403 Forbidden" HTTP status code, but I couldn't find any possibility in typoscript to modify the HTTP header. Am I missing something or is this really impossible with typoscript?

I am using Typo3 4.5.6.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

猫性小仙女 2024-12-19 04:55:17

可以使用打字稿发送 HTTP 标头。在您的情况下,这将是:

config.additionalHeaders = HTTP/1.0 403 Forbidden

唯一的问题是需要停止执行任何以下代码,但打字稿不提供 exit() 函数或类似函数。因此,最简单的方法是使用 USER_INT 函数:

page = PAGE

//condition
[browser = msie]
  //send HTTP 403 and exit
  includeLibs.user_httpheaders = fileadmin/templates/php/user_httpheaders.php
  page.1 = USER_INT
  page.1.userFunc = user_httpheaders->user_main
[global]

而文件 user_httpheaders.php 包含:

<?php

    class user_httpheaders {

        public function user_main() {
            header('HTTP/1.0 403 Forbidden');
            exit;
        }

    }

?>

It is possible to send HTTP headers with typoscript. In your case this would be:

config.additionalHeaders = HTTP/1.0 403 Forbidden

The only problem is that the execution of any following code needs to be stopped but typoscript does not offer an exit() function or similar. So the easiest way is to use a USER_INT function:

page = PAGE

//condition
[browser = msie]
  //send HTTP 403 and exit
  includeLibs.user_httpheaders = fileadmin/templates/php/user_httpheaders.php
  page.1 = USER_INT
  page.1.userFunc = user_httpheaders->user_main
[global]

Whereas the file user_httpheaders.php contains:

<?php

    class user_httpheaders {

        public function user_main() {
            header('HTTP/1.0 403 Forbidden');
            exit;
        }

    }

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