How Offer Rotation Works?

2 replies
Hi, I've been browsing Google about CPA Marketing and read some blogs and it says offer rotation is great when it comes to split-testing to determine which offer coverts the best.

My question is how will I rotate offers? As of now I'm testing 1 offer with 2 different landing pages. My traffic source is FB Adverts and I've been also split-testing my ads.

How will I apply offer rotation? Or how will I do offer rotation? Does it meaning changing the links on my landing page with different offer on the same niche?

EDIT: If I have to rotate offers, do I need to change landing page too?

Thanks,
Simon
#offer #rotation #works
  • Profile picture of the author indexphp
    You split test offers the same way you split test everything else, with software like Google Website Optimizer, Prosper202, or simple PHP code and subids.

    If I have to rotate offers, do I need to change landing page too?
    You don't have to. If you are split testing the same offer across different networks, you could write your redirect link like this....

    Code:
    <?php
    num = rand(0,1);
    if( num == 0{
    header("Location: http://offer1.com");
    } else {
    header("Location: http://offer2.com");
    }
    ?>
    the green num should be $num ... but for some reason the $ dollar sign doesn't work in code view
    {{ DiscussionBoard.errors[5568420].message }}
  • Profile picture of the author simonrv
    Thanks mate. Gonna try it now.
    {{ DiscussionBoard.errors[5568435].message }}

Trending Topics