Laravel auth filter fails on production server
问题 I'm using Laravel 4 framework with standard built-in Auth support. In local environment everything works nice (MAMP, OSx), but on my production server (Digital Ocean standard image with Ubuntu, Apache, Php 5.5.9) auth filter fails and allows access without authentication. routes.php: Route::group(['before'=>'auth'], function(){ Route::get('admin', array('uses' => 'AdminController@home')); Route::get('admin/dashboard', function(){ return Redirect::to('admin'); }); Route::post('payment/ok',