Split URL testing is an experimentation method in which each variant lives at its own distinct URL, and visitors are redirected to one of them at random. It differs from standard A/B testing, where variants are rendered at the same address by modifying the page after it loads or by serving different markup from the server. Split URL testing is the appropriate choice when variants differ too substantially to be produced by client-side modification: a completely rebuilt landing page, a different checkout flow, a new template running on separate infrastructure, or a page built by a different team on a different stack.
The main advantage is freedom. Because the variant is a real page rather than a set of DOM manipulations applied to an existing one, there is no practical limit on how different it can be, and no risk of the variant breaking when the underlying page changes. Development teams can build the challenger in their normal environment, with their normal tooling and quality assurance, rather than expressing a redesign as a script that rewrites the original. For substantial redesigns this is often the only workable approach.
The costs are equally real. The redirect adds latency, typically a few hundred milliseconds, which is applied to one group and not the other and therefore introduces a systematic difference unrelated to the design being tested. Slower variants convert worse, so the redirect penalty biases results against the challenger. Redirects also cause visitor loss during the transition, which is a common source of sample ratio mismatch. Analytics configuration is more complex, because sessions now span two URLs and referrer information may be lost. Search engines must be prevented from indexing the variant, which requires canonical tags pointing to the original.
Careful implementation mitigates most of this. Server-side redirects are faster and more reliable than client-side ones. Pre-loading or pre-connecting to the variant domain reduces the perceived delay. Consistent bucketing, so that a returning visitor always lands on the same variant, prevents the badly inconsistent experience of seeing different versions across sessions. Running an A/A split URL test before the real experiment, where both URLs serve identical pages, reveals how much of the measured difference is redirect artifact rather than design effect, and that figure should be known before conclusions are drawn.
Split URL testing is also the natural mechanism for testing across technology boundaries. When an organization is migrating a section of its site to a new platform, running the old and new versions as split URLs allows the business impact of the migration to be measured before full commitment, rather than discovered afterwards. The same applies to testing a new commerce platform, a rebuilt booking engine, or a replatformed content system, where the alternative is a hard cutover with no measurement at all.
Search engine handling requires deliberate configuration, and getting it wrong can outlast the experiment. The variant URL should carry a canonical tag pointing to the original so that ranking signals consolidate on one address, and the redirect should be a temporary one rather than a permanent redirect, since a permanent status code instructs search engines to replace the original in their index. Excluding variant URLs from the sitemap and monitoring for their appearance in search results are sensible precautions on larger sites. After the test concludes, the losing variant should be removed or redirected rather than left accessible, because abandoned test URLs accumulate over years, get indexed, attract links, and eventually surface in search results as duplicate versions of pages the business has since changed several times.
In engagements where a redesign is on the table, this method is what turns a subjective argument about the new design into an answerable question. A product design team can build the challenger properly, and a CRO service team can measure it against the incumbent under real traffic, with the redirect penalty quantified and accounted for. For replatforming decisions in particular, this is the difference between a migration justified by a business case and one justified by hope, and it is a standard part of how larger enterprise programs de-risk changes that would otherwise be irreversible.