Skip to main content

Tracking

What is redirect tracking?

Quick Definition

Redirect tracking logs a click by bouncing the visitor through your tracker (an HTTP 302) before sending them to the offer. Redirectless (direct) tracking skips the hop — the landing page loads directly and the click is recorded by script or server-side. The trade-off is logging power versus speed and ad-policy risk.

How a tracking redirect works

The link points at your tracker, not the offer. The tracker receives the request, writes the click row, generates a click ID, evaluates rules (geo, device, cap, fraud), then returns a 302 to the final offer URL with the click ID appended. The browser follows the redirect. Total added time is one DNS lookup plus a round trip — typically 50-300ms.

ad → tracker.com/click?campaign=42  (302)  →  offer.com/?cid=abc123

Redirectless (direct) tracking

Here the ad or link points straight at your landing page — a 200, no bounce. The click is recorded by a JavaScript tag or a server-side call on page load, and the click ID is written client-side. No redirect hop means faster perceived load and no redirect footprint for ad reviewers, at the cost of slightly more setup and a reliance on the page actually loading the tag.

Why the redirect matters: speed and policy

  • Speed — every hop adds latency, and on paid mobile traffic latency costs conversions.
  • Ad policy — Google, Meta, and TikTok scrutinize redirect chains. Multiple redirects, or a redirect that changes the displayed domain, can trip destination-mismatch or cloaking flags and get an ad disapproved.

Redirectless tracking sidesteps both, which is why most modern trackers offer it.

When to use each

  • Redirect tracking shines when you need server-side decisions before the user lands: smartlink routing, geo/device targeting, offer rotation, capping, and fraud filtering all happen at the redirect.
  • Redirectless is better for paid traffic to a single bridge page where speed and clean ad review matter more than pre-landing logic.

A common pattern: redirectless to your landing page, then a tracked redirect on the outbound offer click.

Keeping redirects clean

Minimize the chain to a single hop; keep the displayed domain consistent with what the ad shows; always preserve the click ID and query parameters through the redirect; use HTTPS end to end; and test the full path so a network redirect doesn't strip your tracking parameters.

Frequently asked questions

What is redirect tracking?

Redirect tracking records a click by routing the visitor through the tracker's server with an HTTP 302 redirect before sending them on to the offer. During that hop the tracker logs the click, assigns a click ID, and can apply rules like geo targeting, offer rotation, capping, and fraud filtering.

What's the difference between redirect and redirectless tracking?

Redirect tracking bounces the user through the tracker (a 302) before the destination loads. Redirectless or direct tracking points straight at the landing page (a 200) and records the click with a script or server-side call, with no extra hop. Redirect tracking allows pre-landing server-side logic; redirectless is faster and leaves no redirect footprint for ad reviewers.

Are tracking redirects bad for paid ads?

They can be. Ad platforms scrutinize redirect chains, and multiple redirects or a redirect that changes the displayed domain can trigger destination-mismatch or cloaking flags and get an ad disapproved. Redirects also add latency that costs conversions on mobile. A single clean redirect that keeps the same domain is usually fine; long chains are risky.

When should I use redirect tracking?

Use redirect tracking when you need server-side decisions before the user lands — smartlink routing, geo or device targeting, offer rotation, capping, or fraud filtering all happen at the redirect. Use redirectless tracking when sending paid traffic to a single bridge page where speed and clean ad review matter more than pre-landing logic.

Related terms

Put it to work

Build a fast, compliant click path

Where and how you redirect shapes both speed and ad approval. The playbook covers the full tracking flow; the software guide compares trackers by redirect speed and redirectless support.