Test different landing pages and optimize conversion rates.
RedirectFlow's A/B testing feature allows you to split traffic between multiple destinations based on configurable percentages. This enables you to:
Navigate to your website's redirects and click "Create Redirect". Select "A/B Test" as the redirect type.
Add your test variants with their destinations and traffic percentages:
Source: /landing
Variant A (Control):
Destination: /landing-v1
Traffic: 50%
Variant B (Test):
Destination: /landing-v2
Traffic: 50%Enable sticky sessions to ensure returning visitors see the same variant. This is recommended for accurate conversion tracking.
You can also configure A/B tests via the API:
POST /api/v1/redirects
{
"source": "/landing",
"type": "ab_test",
"sticky_session": true,
"variants": [
{
"name": "control",
"destination": "/landing-v1",
"weight": 50
},
{
"name": "variant-b",
"destination": "/landing-v2",
"weight": 50
}
]
}RedirectFlow tracks key metrics for each variant:
View actual traffic percentages vs. configured weights.
Track unique visitors per variant.
Compare performance across variants.
See variant distribution by region.
For conversion tracking, integrate with your analytics platform using our webhook events or the analytics API.
Pro Feature: A/B testing is available on Pro plans and above. Upgrade your plan to access this feature.