And the URL for the namespace ends in `f51431a...`?
And the URL for the namespace ends in
f51431a...?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.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
},
};