I want to use two cpa on a single domain. Let me elaborate, If 2 persons are going to my domain so 1 person should be redirected to xyz1 CPA OFFER and another to xyz2 CPA OFFER I want a 50 - 50 percent of visits on both the offers it is possible ?
Well its easy to do with dedicated landing page providers like unbounce, what platform is your current cpa website on?
50/50 random redirect? https://www.blackhatworld.com/seo/req-php-script-to-redirect-50-50-the-traffic.229674/ a simple php code that might work Code: <?php $urlone="SITE-ONE-URL-HERE"; $urltwo="SITE-TWO-URL-HERE"; $num=rand(0,100); if($num<50) { header("Location :$urlone); die; } else { header("Location :$urltwo"); die; } ?>