1. 删除了一个文件之后,明明这个文件是没有使用的, 但是一直提示加载错误
尝试了很多方法 php artisan clear-compiled php artisan route:clear 等都不行。
后来执行composer dumpautoload 就可以了。
2.laravel线上需要缓存 路由文件
php artisan route:cache
提示错误:Unable to prepare route [clean] for serialization. Uses Closure
// Previously Route::get('posts/laravel's-new-forelse-construct', function() { return Redirect::to('posts/laravels-new-forelse-construct', 301); }); // Currently Route::get('posts/laravel's-new-forelse-construct', 'RedirectsController@getPostsLaravelsNewForelseConstruct');
如上,在route.php里不能有function,上面的改成下面的就可以缓存成功了。