laravel框架cdn无效解决方法

在用`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');
});

    A+
发布日期:2020年10月31日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: