What is Redirect after submission?
Redirect after submission is a basic form feature to send respondents to a specific URL after they hit the submit button. When someone submits your form, something has to happen next. By default, most form builders show a thank-you message on the same page. Redirect after submission replaces that with a trip to a URL of your choosing.
Why would you need the "redirect on submit" feature?
The obvious use case is a custom thank-you page; we are talking about one that lives on your own website, matches your branding, and doesn't have the form builder's name plastered on it. That alone is enough reason for many people to want it.
But its uses go further than that:
- Sending people to a scheduling page after they fill out a contact or intake form. They submit, they land on Calendly (or similar), they book a call. No extra email needed.
- Directing to a payment page after an order or registration form. The redirect is part of a sequence, not a destination.
- Delivering content, such as a PDF download, a resource page, a members-only area, to respondents who just opted in.
- Routing into an onboarding flow where the form is the first step and everything that follows is on your own platform.
In each of these cases, the redirect isn't decorative. It's something you need in your workflow.
The types of redirect on submission (yes... there are types)
Not all redirects are the same. Sometimes, you need to use the details in the submitted form and sometimes you need to show some respondents a success page, while showing "We're sorry..." page to some others.
- Static redirect is the most basic version: all respondents go to the same URL after submitting. Every form builder that offers redirects supports this.
- Conditional redirect sends different respondents to different URLs based on their answers. Someone selects "I'm a freelancer" → one page. Someone selects "I run a team" → another page. This is far less common and usually locked behind higher plans.
- Redirect with query parameters passes form data into the destination URL as parameters (things like name, email, or a plan selection) so the next page can reference or pre-fill it. Useful for connecting to other tools in your stack, but requires some technical comfort to set up, and is only supported by a handful of tools.
- Delayed redirect shows the built-in thank-you message first, then redirects after a few seconds. Though we haven't seen this type of redirect in most form builder tools we have reviewed so far.
The details that nobody mentions
- Redirects and embedded forms don't always get along: If your form is embedded in an iframe on your website, a redirect can behave unexpectedly. What we mean is that redirecting can happen within the iframe itself rather than the parent page, so the user ends up seeing your destination URL in a small box. Some tools handle this correctly; others don't. Worth testing before going live.
- You need custom thank you pages for tracking conversions: A custom thank-you page with your own tracking code means you can fire a conversion event, a Google Ads tag, or a Meta Pixel event. The form builder's built-in confirmation screen typically offers none of that.
- Conditional redirect is rarer than it sounds: Many tools advertise redirect after submission as a feature, but only mean static redirects. If you need to route respondents based on their answers, check if this is possible.
- Free plans almost always exclude it: Speaking of experience, redirect after submission is consistently behind a paywall across the industry.
- Query parameter passing has a ceiling: Passing form responses into a URL works well for short text answers and selections. It breaks down quickly with long-form text, file uploads, or anything sensitive. Don't pipe personal data through a URL if you can avoid it, because it may end up in server logs and browser history.
- Look for HTTP Post if you need to use long answers in your redirected page: Some form builder tools, like Jotform, offer the HTTP Post feature alongside the redirect on submit, while most don't. If you need to pass along long answers, make sure to look into the documentation or check in with the support team.
Form builder tools that offer Redirect after submission

forms.app
An easy-to-use & all-around form builder app

Fillout
Feature-rich form builder that balances power with usability

Cognito Forms
An underrated powerhouse for building advanced forms and workflows

Formplus
Formplus is a form solution that offers both offline and online forms.

Jotform
Form-centered business tool that offers the whole package

Paperform
Document-style form tool with flexible features for agencies and developers

Tally
A simple form builder tool with a Notion-like document editor interface

Typeform
The gold standard for conversational forms and surveys
Frequently asked questions
Is redirect after submission available on free plans?
Rarely. Most form builders reserve this feature for paid plans.
Can I pass form answers into the redirect URL?
Some tools let you do this using URL query parameters, by appending something like ?name=Adam&plan=pro to the destination URL. This is useful for pre-filling a subsequent form, personalising a landing page, or triggering events in other tools. Support for this varies by platform, and it requires some technical setup. Avoid passing sensitive data (emails, phone numbers) through URLs if possible.
Will redirect after submission work if my form is embedded on my website?
It depends on the tool and how the form is embedded. Forms inside an iframe can redirect the iframe rather than the full page, which looks broken. Some tools handle this correctly with JavaScript that instructs the parent page to redirect. Others don't. Test the embed + redirect combination in the actual environment before publishing.
