Skip to main content
Instant redirect pages in the HoopAI platform let you automatically send visitors from one funnel page to another URL. When redirects fail, visitors see a blank page or stay stuck on the current step. This guide covers the most common redirect issues and how to resolve them.

Redirect URL format

An incorrectly formatted URL is the most common reason a redirect page does not work.
  • Always include the full URL with protocol: https://example.com/page
  • Do not use relative paths like /thank-you — use the complete URL
  • Remove any trailing spaces or line breaks from the URL field
  • Avoid special characters that are not URL-encoded
URLs without https:// or http:// will not redirect. Hoop does not automatically prepend the protocol to redirect URLs.

Timing issues

Redirect pages execute immediately by default, but certain configurations can cause delays or prevent the redirect from firing.
1

Check for conflicting scripts

If you have added custom JavaScript to the page through Settings > Custom Code, a script error can block the redirect from executing. Remove custom scripts temporarily to test.
2

Verify page load sequence

If the redirect page is part of a multi-step funnel, confirm the previous step is correctly configured to advance to the redirect page. A misconfigured form action can skip or bypass the redirect.
3

Test in an incognito window

Browser extensions and cached data can interfere with redirects. Open the funnel in an incognito or private browsing window to rule out browser-side issues.

Conditional redirects

If you are using conditional logic to redirect visitors to different URLs based on form input or contact data, incorrect configuration can send visitors to the wrong destination or nowhere at all.
IssueCauseFix
All visitors go to the same URLConditions are not evaluated correctlyCheck that your conditional logic uses the correct field and comparison operator
No redirect happensNo condition matchesAdd a default/fallback redirect URL for visitors who do not match any condition
Wrong redirect destinationConditions overlapReorder conditions so the most specific rule is evaluated first
Test each conditional path by submitting the funnel with different data values. Verify that each path redirects to the expected URL.

Tracking pixels and redirect timing

If you have tracking pixels (Facebook Pixel, Google Analytics, or similar) on the redirect page, the redirect may fire before the pixel has time to load and send its event.
1

Add a brief delay

Configure a 2 to 3-second delay on the redirect to give tracking pixels time to fire. In the redirect page settings, set the Redirect Delay value if available.
2

Move pixels to the destination page

If a delay is not acceptable for user experience, place your conversion tracking pixel on the destination page instead of the redirect page.
3

Use server-side tracking

For the most reliable tracking, use server-side conversion APIs (such as Facebook Conversions API) instead of client-side pixels. These are not affected by redirect timing.
A redirect delay of more than 5 seconds can cause visitors to leave before reaching the destination. Keep delays as short as possible.

Mobile redirect issues

Redirects may behave differently on mobile devices compared to desktop browsers.
  • In-app browsers: Links opened from Facebook, Instagram, or email apps use in-app browsers that can block or delay redirects. Test your funnel by opening it within these apps
  • Pop-up blockers: Some mobile browsers treat JavaScript-based redirects as pop-ups and block them. Use server-side redirects when possible
  • Slow connections: On slower mobile networks, the redirect page may take longer to load, delaying the redirect. Ensure the redirect page has minimal content and no large assets

URL parameter passing

When you redirect visitors, you may need to carry URL parameters (UTM tags, tracking IDs, or form data) from the funnel page to the destination URL.
1

Enable parameter forwarding

In the redirect page settings, enable the Pass URL Parameters option if available. This appends all incoming URL parameters to the redirect destination.
2

Manually append parameters

If automatic forwarding is not available, add the parameters directly to your redirect URL. For example: https://example.com/thank-you?utm_source=facebook&utm_medium=cpc
3

Test parameter passing

Visit your funnel page with test parameters (e.g., ?test=123) and verify they appear in the destination URL after the redirect completes.

FAQs

Yes. Redirect pages can point to any valid URL, including external websites, payment pages, or booking calendars hosted outside of Hoop.
In-app browsers (Facebook, Instagram, Gmail) handle redirects differently than standard browsers. Test the full flow from within the app where your audience will click the link.
Yes. The redirect page is counted as a page view in your funnel analytics. If you are tracking conversion rates, account for the redirect step in your funnel calculations.
Last modified on March 5, 2026