HTTP状态代码被覆盖

时间:2016-12-19 08:23:27

标签: php http yii2

我正在使用PHP和Yii2开发REST API。我已经创建了一个用于创建(POST)实体的自定义类。在那个班级我有以下代码:

if (!$this->AuthenticateRegister($username, $token)) {
            throw new ForbiddenHttpException("Invalid token");
        }

当我在本地尝试这个(Windows上的WAMP)时,每件事都运行正常,我得到了正确的HTTP状态代码 enter image description here 但是当我在主机(cpanel)上传代码时,我总是得到200响应 enter image description here 由于客户端需要HTTP状态码,我该如何解决这个问题呢?

0 个答案:

没有答案