Hi,
I would like to request some features
-
Follow redirect: this option should be available through Netlify config files _redirect and netlify.toml. When enabled, it’ll follow the redirect response to get the lest response from ending url which is not the redirect
-
Ignore query string CDN cache: this option should be available through Netlify config files _redirect and netlify.toml. When enabled, it’ll cache the response based only on the url domain + url path while ignoring the query string as cache key. So any requests to the same path with any query string will always return the same response. Or this option can be something more flexible by just setting the cacheKey directly. E.g cacheKey: ${req.host}${req.path}
-
Custom cache key in Netlify function and Edge function: this is similar to number 2. The cacheKey can be any string given in the function. Any request with the same cacheKey will return the same response.