workers-airtable-form
workers-airtable-form copied to clipboard
Direct user to another page after submission
Is there an easy way to direct the user to another page upon form submission? Whenever I use this I get a "Not Found" upon form completion.
Hello @brentrealbt, Yes, there is an easy way to do a page redirect upon form submission.
Within the Worker script (i.e. the 'index.js' file), and under export default{ }
, you may replace the line
return new Response('Not found', { status: 404 })
with that of
return Response.redirect(destinationURL, statusCode)
Reference: Redirect - Cloudflare Workers Docs