Redirect :: to不与302重定向

时间:2014-05-24 11:38:05

标签: laravel-4 http-status-code-302

我的控制器中有这个代码:

return Redirect::to('event/create')->withErrors($validation);

为什么我得到statusCode 200而不是302?

由于

ps:我使用Response::json()来验证

1 个答案:

答案 0 :(得分:2)

为发生验证错误的页面返回302.

但是,您重定向到的页面会给您200的状态(因为它正确加载) - 所以当您在 页面上运行Response::json()时,您将得到200。

您可以在浏览器开发人员工具包中测试是否抛出了302和200:

Status code check