用户Laravel 4的安全身份验证

时间:2014-05-25 13:38:09

标签: ssl laravel laravel-4 wamp laravel-routing

我正在开发一个新的Laravel 4项目,我想通过SSL协议保护身份验证路线,老实说,我搜索了2天没有运气,我不知道该怎么做。

那是我的routes.php文件:

Route::group(array('before' => 'guest'), function(){

/*==========================
| csrf PROTECTION
*///========================
Route::group(array('before' => 'csrf'), function(){

    /*==========================
    | Post Sign-in
    *///========================
    Route::post('/account/sign-in', array(
    'as'    => 'account-sign-in-post',
    'uses'  => 'AccountController@postSignIn'
    ));
});

/*==========================
| Get Sign-in
*///========================
Route::get('/account/sign-in', array(
'as'    => 'account-sign-in',
'uses'  => 'AccountController@getSignIn'
));

}); 

我想知道是否甚至可以使用wamp,或者它只能使用真正的主机服务器,任何帮助都会受到赞赏,并抱歉我的英语不好。

1 个答案:

答案 0 :(得分:0)

您可以使用https强制路由服务。例如:

Route::get('account/sign-in', array('https', function()
{
    return 'Must be over HTTPS';
}));

参考:http://laravel.com/docs/routing