headers->has('Cache-Control')) { $cacheControl = $response->headers->get('Cache-Control'); if (str_contains($cacheControl, 'no-cache')) { // 改為允許快取 $response->headers->set('Cache-Control', 'public, max-age=604800'); } } return $response; } }