在用`laravel`框架开发项目时,有些路由可能需要用到`cdn`
这时必须去除`cache-control`
首先新建中间件
>headers->remove('Cache-Control');
return $response;
}
}
然后编辑`app/http/kernel.php`
加入
> protected $routeMiddleware = [
......
'withcache' => \\App\\Http\\Middleware\\CheckResponse::class,
];
然后路由中可以使用中间件了
>Route::group(['middleware' => ['withcache']], function () {
Route::any('money_list','TradeController@money_list');
});