我知道用laravel4处理404错误是在app/start/global.php中写:App::missing(function($exception){returnRedirect::route('404_Error');});但实际上我想使用这条路线:Route::get('error',array('as'=>'404_Error','uses'=>'ErrorController@get404Error'));但要保持相同的URL。例子:我现在的URL是localhost:8000/users/blat(404错误)。我不想重定向到错误页面。我想在此URL上查看ErrorCo