Not sure then, sorry. I don't personally use MailChannels, so I don't know how their support system
Not sure then, sorry. I don't personally use MailChannels, so I don't know how their support system works
kvworker, and make sure that the KV Namespace you screenshotted matches the ID you have in the wrangler.toml?

f51431a...?f51431a4ff724d4892400056a9bb42f3[env.production] in wrangler.toml file, then deploy with wrangler deploy --env=production

"placement_status": "SUCCESS","placement_status": "INSUFFICIENT_SUBREQUESTS", but it already has data in the graph.kvworkerf51431a...f51431a4ff724d4892400056a9bb42f3[env.production]wrangler deploy --env=production"placement_status": "SUCCESS","placement_status": "INSUFFICIENT_SUBREQUESTS",export default {
async fetch(request, env, ctx) {
let response = await fetch(request)
// Check if the request URL ends with "test.html"
// Create a new response with the same content but a different URL
const newUrl = request.url.replace('/test.html', '/rewrite.html')
console.log(newUrl)
response = new Response(response.body, {
status: 301, // Redirect status code
headers: {
...response.headers,
'Location': newUrl
}
})
return response
},
};