无法重定向状态

时间:2017-03-24 17:51:38

标签: slim

使用

调用Controller
$this->get( '/read/{slug}', \Rib\Src\Apps\Blog\BlogControllers\IndexController::class . ':index' );

在里面我尝试了:

return $response->withStatus( 404 )->withRedirect( '/message' );

return $response->withRedirect( '/message', 404 );

但返回的响应始终包含代码200。 如何执行404?

1 个答案:

答案 0 :(得分:1)

您无法使用404状态代码重定向。只有3xx对重定向有效。当浏览器收到Location:标头时,它会向给定的网址发出新请求。这意味着您可以重定向到返回404的路线。

$app->get("/test", function ($request, $response, $arguments) {
    return $response->withRedirect("/message");
});

$app->get("/message", function ($request, $response, $arguments) {
    return $response->write("Oh noes!")->withStatus(404);
});

以上代码会将您重定向到404状态代码的回复。

$ curl --include --location http://0.0.0.0:8080/test

HTTP/1.1 302 Found
Host: 0.0.0.0:8080
Date: Sun, 26 Mar 2017 04:53:05 +0000
Connection: close
X-Powered-By: PHP/7.1.2
Content-Type: text/html; charset=UTF-8
Location: /message

HTTP/1.1 404 Not Found
Host: 0.0.0.0:8080
Date: Sun, 26 Mar 2017 04:53:05 +0000
Connection: close
X-Powered-By: PHP/7.1.2
Content-Type: text/html; charset=UTF-8

Oh noes!