Laravel unexpected redirects ( 302 )(Laravel 意外重定向(302))
问题描述
我已经开始了一个新的 Laravel 5.2 项目,使用 laravel new MyApp
,并通过 php artisan make:auth
添加了身份验证.这是一个仅限会员的网站,第一个用户在其中被播种,然后创建其余用户(无需手动创建用户/密码重置等).
I have started a new Laravel 5.2 project, using laravel new MyApp
, and added authentication via php artisan make:auth
. This is intended to be a members only website, where the first user is seeded, and creates the rest (no manual user creation/password reset/etc).
这些是我目前定义的路由:
These are the routes I have currently defined:
Route::group(['middleware' => 'web'], function () {
// Authentication Routes...
Route::get( 'user/login', ['as' => 'user.login', 'uses' => 'AuthAuthController@showLoginForm']);
Route::post('user/login', ['as' => 'user.doLogin', 'uses' => 'AuthAuthController@login' ]);
Route::group(['middleware' => 'auth'], function() {
// Authenticated user routes
Route::get( '/', ['as'=>'home', 'uses'=> 'HomeController@index']);
Route::get( 'user/{uid?}', ['as' => 'user.profile', 'uses' => 'AuthAuthController@profile' ]);
Route::get( 'user/logout', ['as' => 'user.logout', 'uses' => 'AuthAuthController@logout' ]);
Route::get( '/user/add', ['as' => 'user.add', 'uses' => 'AuthAuthController@showAddUser']);
[...]
});
});
我可以正常登录,但是我遇到了一些非常奇怪"的行为 - 当我尝试注销时(通过通过 artisan 创建的内置 logout
方法),页面做了一个 302 重定向到主页,我仍然登录.
I can login just fine, however I'm experiencing some very "funky" behavior - when I try to logout ( via the built-in logout
method that was created via artisan ), the page does a 302 redirect to home, and I am still logged in.
此外,虽然几乎所有页面(此处未列出)都按预期工作,但 user.add 也会向主页生成 302.
What's more, while almost all pages (not listed here) work as expected, user.add also produces a 302 to the home page.
请注意主页向 AuthController 声明为 $redirectTo
,如果这有任何区别
Do note the homepage is declared to the AuthController as $redirectTo
, if that makes any difference
我通过调试栏发现了重定向.知道要寻找什么吗?
I found out about the redirects via the debugbar. Any idea on what to look for ?
推荐答案
经过几个小时的摸索,我找到了答案——这很愚蠢.
After several hours of hair pulling, I have found my answer -- and it's silly.
问题是路由 user.profile
有一个路径 user/{uid?}
并且它匹配 user/logout
和user/add
作为路径.
The problem is that the route user.profile
has a path user/{uid?}
and it matches both user/logout
and user/add
as paths.
它在其他人之前,没有正则表达式或类似的,它处理了路线.
It being before the others, and not having a regex or similar, it handled the route.
我仍然不知道为什么会为 那个 页面生成 302,但发现将其移出 AuthController
并移入 UserController代码>(它应该从一开始的位置)修复了行为.
I still don't know why a 302 was generated for that page, but found that moving it out of the AuthController
and into the UserController
(where it should be from the start) fixed the behavior.
因此,我的(修改和工作)路线现在看起来像这样:
Thus, my (amended and working) routes now look like so:
Route::group(['middleware' => 'web'], function () {
// Authentication Routes...
Route::get( 'user/login', ['as' => 'user.login', 'uses' => 'AuthAuthController@showLoginForm']);
Route::post('user/login', ['as' => 'user.doLogin', 'uses' => 'AuthAuthController@login' ]);
Route::group(['middleware' => 'auth'], function() {
// Authenticated user routes
Route::get( '/', ['as'=>'home', 'uses'=> 'HomeController@index']);
Route::get( '/home', ['as'=>'home', 'uses'=> 'HomeController@home']);
Route::get( 'user/logout', ['as' => 'user.logout', 'uses' => 'AuthAuthController@logout' ]);
// *** Added /profile/ here to prevent matching with other routes ****
Route::get( 'user/profile/{uid?}', ['as' => 'user.profile', 'uses' => 'UserController@profile' ]);
Route::get( '/user/add', ['as' => 'user.add', 'uses' => 'UserController@showAddUser']);
[...]
});
});
这篇关于Laravel 意外重定向(302)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 意外重定向(302)
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01