我正在使用laravel。用于身份验证哨兵 2. 当用户访问我的站点时,他们将访问该页面
http://dolovers.com/profile/13
这里 13 是用户 ID。
我正在研究有一个更好的程序来通过用户名查找用户
我还想通过以下方式减少链接:
http://dolovers.com/<username>
我应该如何从 sentry2 和 laravel 开始。感谢您的帮助:) 个人资料路线:
# Profile
// Route::get('profile', array('as' => 'profile', 'uses' => 'Controllers\Account\ProfileController@getIndex'));
Route::get('profile', array('as' => 'profile', 'uses' => 'ProfilesController@index'));
Route::post('profile', 'Controllers\Account\ProfileController@postIndex');