What do you use to split test WP landing pages?

Status
Not open for further replies.

bullet-ride

minor internet superstar
Jan 19, 2009
469
7
0
I'm looking for a better alternative to having duplicate databases. Any thoughts?

83722-1-.jpg


7086middle012-1-.jpg


7245bn01kristina-1-.jpg


1434averotica-03-1-.jpg


109314-1-.jpg
 


Bullet,

You could use htaccess to map the incoming url to a splitest script, which would then decide which ultimate URL to show.

What would you do if it wasn't wordpress?
 
php script:

PHP:
<?php
$rand = rand(0,1);
if($rand == 0) {
    header('Location: http://www.domain.com/landinpage1.html');
} 
else {
    header('Location: http://www.domain.com/landinpage2.html');
}
?>
 
Status
Not open for further replies.