Glossary

Form redirect defined.

A form redirect sends the visitor to another page after a successful submission, most often a thank-you page, so a submit ends somewhere deliberate instead of a blank response.

Definition

How a form redirect works

When a visitor submits a form, the browser POSTs the fields and waits for a response. Without a redirect it would render whatever the endpoint returns, which for a plain form is a bare confirmation with no way back into your site. A form redirect fixes that: instead of a page, the server answers with a 3xx status and a Location header naming where to go, and the browser follows it automatically to a page you chose.

This pattern is often called Post/Redirect/Get, and it does two useful things. It lands the visitor on a real thank-you page you control, where you can confirm success and offer a next step. It also stops the double-submit problem, because after the redirect the browser is sitting on an ordinary GET page, so a refresh reloads the thank-you page rather than resending the form. A hosted form backend makes this a setting rather than server code. With FormWire you add a redirect URL to the form (a hidden field, or a rule in your dashboard), and the endpoint responds with the 3xx that carries the visitor there after the submission is safely stored and delivered.

Related questions

Want to see it working?

Read the docs
Ready in a minute

Land every submission on a thank-you page.

Free tier forever. No credit card required.