Easiest way to rotate landing pages?

19 replies
I did a few searches but I can't find a reliable method and was hoping you guys would know. Is there a way to send someone to a link and that link leads to either page A or page B automatically?
#easiest #landing #pages #rotate
  • Profile picture of the author jaggyjay
    You may find G's Website Optimizer of good value - it's free. It will allow you to A/B split test your landing pages. If you're looking for something less robust (ie: rotating text, images, etc) then any rotator script might do.

    Check out www.google.com/websiteoptimizer for the Optimizer; and check out HotScripts.com for any rotator script.
    {{ DiscussionBoard.errors[1630096].message }}
  • Profile picture of the author lisag
    Originally Posted by FSchmieder View Post

    I did a few searches but I can't find a reliable method and was hoping you guys would know. Is there a way to send someone to a link and that link leads to either page A or page B automatically?
    JaggyJay gave good advice. You can also do it with PHP pretty easily.

    Do you want to just randomly rotate between two pages even if the visitor has been there before, or do you want to have a repeat visitor go to the same page each time they return, and new visitors get sent to one of the two pages the first time?
    Signature

    -- Lisa G

    {{ DiscussionBoard.errors[1630474].message }}
  • Profile picture of the author FSchmieder
    I think jay nailed it. Just a simple method to if you click a link, you'll randomly get a or b. I don't need anything fancier than that for right now
    Signature
    Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

    Click Here to discover how
    {{ DiscussionBoard.errors[1630869].message }}
  • Profile picture of the author FSchmieder
    The web optimizer is working ok, but I'm curious how to do it with php. Can someone point me in the right direction
    Signature
    Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

    Click Here to discover how
    {{ DiscussionBoard.errors[1633354].message }}
    • Profile picture of the author lisag
      Originally Posted by FSchmieder View Post

      The web optimizer is working ok, but I'm curious how to do it with php. Can someone point me in the right direction
      Change your index.php file to read like this:

      <?PHP
      $pages = array("page1.php","page2.php"); //use real page names. As many as you want.
      $choice = rand(0,count($pages)-1);
      $location = urlencode($pages[$choice]);
      header("Location: $location");
      ?>
      Signature

      -- Lisa G

      {{ DiscussionBoard.errors[1633466].message }}
  • Profile picture of the author FSchmieder
    Thanks lisa but do you know a way I can tweak that so I can lead it to a page without it putting in the link url before the page url

    What I mean is when I go to the php link, it goes to hxxp://w3.linkurl.com/hxxp://www.page1.com and I want it to just lead to hxxp://w3.page1.com
    Signature
    Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

    Click Here to discover how
    {{ DiscussionBoard.errors[1633523].message }}
    • Profile picture of the author lisag
      Originally Posted by FSchmieder View Post

      Thanks lisa but do you know a way I can tweak that so I can lead it to a page without it putting in the link url before the page url

      What I mean is when I go to the php link, it goes to hxxp://w3.linkurl.com/hxxp://www.page1.com and I want it to just lead to hxxp://w3.page1.com
      On second read, I think I understand what you are saying. What values are you putting in for $page1 and $page2?
      Signature

      -- Lisa G

      {{ DiscussionBoard.errors[1633693].message }}
      • Profile picture of the author FSchmieder
        Originally Posted by lisag View Post

        On second read, I think I understand what you are saying. What values are you putting in for and ?
        hah yea sounds kind of weird. I have a WP blog installed so I'm using that to create the pages. So the actual address is mysite.c0m/blog/page1 etc so I was using that for $page1, page2, etc

        I tried changing $pages to $url, but didn't work
        Signature
        Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

        Click Here to discover how
        {{ DiscussionBoard.errors[1633761].message }}
        • Profile picture of the author FSchmieder
          Originally Posted by Craig Desorcy View Post

          It's not going to work with Wordpress.

          I can't find it but Andrew Hansen created a plugin for
          Wordpress that will split test posts. Dig around.


          Craig
          yea thanks that's what i'm starting to figure. I did find a plugin made by the firepow guys so I'm going to test that. If not I'll stick with the google optimizer
          Signature
          Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

          Click Here to discover how
          {{ DiscussionBoard.errors[1633818].message }}
          • Profile picture of the author lisag
            Originally Posted by FSchmieder View Post

            yea thanks that's what i'm starting to figure. I did find a plugin made by the firepow guys so I'm going to test that. If not I'll stick with the google optimizer
            I can see where your confusion is. Where I wrote:

            $pages = array("page1.php","page2.php"); //use real page names. As many as you want.

            I meant you to use the actual names of the actual pages you wanted to rotate.

            So, lets suppose, you had a page called "I-Like-To-Fish.php", and once called "I-Like-To-Hunt.php"

            You would write the code like this:

            $pages = array("I-Like-To-Fish.php","I-Like-To-Hunt.php");

            Is that clear now?
            Signature

            -- Lisa G

            {{ DiscussionBoard.errors[1634043].message }}
            • Profile picture of the author FSchmieder
              Originally Posted by lisag View Post

              I can see where your confusion is. Where I wrote:

              = array("page1.php","page2.php"); //use real page names. As many as you want.

              I meant you to use the actual names of the actual pages you wanted to rotate.

              So, lets suppose, you had a page called "I-Like-To-Fish.php", and once called "I-Like-To-Hunt.php"

              You would write the code like this:

              = array("I-Like-To-Fish.php","I-Like-To-Hunt.php");

              Is that clear now?
              Yea the problem is I need to make html or php landing pages. I thought I could use the redirect with WP pages but it doesn't work. Like in my example, I have mysite.com/blog and I have mysite.com/blog/LP1, mysite.com/blog/LP2, and mysite.com/blog/LP3. If I use the php code, I'd need the index file in the /blog folder which would break WP since I was overwriting it's index file. Putting the index file in another folder, like /lp, will cause it to go to mysite.com/lp/lp1 which doesn't exist

              Like I said I'll convert them over to html later on and do it that way but now i need bed.
              Signature
              Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

              Click Here to discover how
              {{ DiscussionBoard.errors[1634416].message }}
        • Profile picture of the author lisag
          Originally Posted by Craig Desorcy View Post

          It's not going to work with Wordpress.

          I can't find it but Andrew Hansen created a plugin for
          Wordpress that will split test posts. Dig around.


          Craig
          Yep, you're right on that. I just saw the WP reference.
          Signature

          -- Lisa G

          {{ DiscussionBoard.errors[1634048].message }}
  • Profile picture of the author lisag
    I'm not sure I understantd what you are asking, or maybe you don't understand what I wrote.

    That code will take a visitor directly to whatever page comes up in rotation without them seeing or clicking at link. All they have to do is land at index.php. The script automatically redirects from there.

    If that's not the answer to your question, please rephrase and try again.
    Signature

    -- Lisa G

    {{ DiscussionBoard.errors[1633687].message }}
    • Profile picture of the author solution
      Google is the best way to find out some outstanding thing which every person need, even though the things which are not shown to the peoples, Google can show them to all over the world, and one thing more that warrior is also one of them where you can find some very class searches.
      {{ DiscussionBoard.errors[1635931].message }}
  • Profile picture of the author FSchmieder
    Thanks again for all the help. I finally ended up just making a javascript redirect on my conversion page that just leads to the vendor offer. Not exactly what I wanted as I wanted to see how well each individual landing page helped convert into a sale, not a click.

    I guess I'll try making some html pages later on but I need sleep!
    Signature
    Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

    Click Here to discover how
    {{ DiscussionBoard.errors[1634404].message }}
  • Profile picture of the author mbacak
    I personally use hypertracker.com and google website optimizer.

    If your going to use hypertracker to do it.

    I'd suggest you make this be your index page.

    <html>
    <head>
    <title>Add your page title here</title>
    <META
    http-equiv="refresh" content="0;URL=http://www.PlaceHyperTrackerLinkHere.com">
    </head>
    <body bgcolor="#ffffff">

    <center>Connecting you now...
    </center>
    </body>
    </html>

    You can change the amount of time that this
    redirecting page is displayed by changing the
    number in the refresh content="0 portion of
    the meta tag statement...

    So if you want it to redirect in 5 seconds, make it look like this...

    <html>
    <head>
    <title>Add your page title here</title>
    <META
    http-equiv="refresh" content="5;URL=http://www.PlaceHyperTrackerLinkHere.com">
    </head>
    <body bgcolor="#ffffff">

    <center>Connecting you now...
    </center>
    </body>
    </html>

    Anyway. That's how I do it... :-)
    Signature
    The Listbuilding Club (join by clicking below)
    {{ DiscussionBoard.errors[1634539].message }}
    • Profile picture of the author FSchmieder
      Originally Posted by mbacak View Post

      I personally use hypertracker.com and google website optimizer.

      If your going to use hypertracker to do it.

      I'd suggest you make this be your index page.

      <html>
      <head>
      <title>Add your page title here</title>
      <META
      http-equiv="refresh" content="0;URL=http://www.PlaceHyperTrackerLinkHere.com">
      </head>
      <body bgcolor="#ffffff">

      <center>Connecting you now...
      </center>
      </body>
      </html>

      You can change the amount of time that this
      redirecting page is displayed by changing the
      number in the refresh content="0 portion of
      the meta tag statement...

      So if you want it to redirect in 5 seconds, make it look like this...

      <html>
      <head>
      <title>Add your page title here</title>
      <META
      http-equiv="refresh" content="5;URL=http://www.PlaceHyperTrackerLinkHere.com">
      </head>
      <body bgcolor="#ffffff">

      <center>Connecting you now...
      </center>
      </body>
      </html>

      Anyway. That's how I do it... :-)
      I have a java redirect that's the same thing. I just also put a link in so it says "taking you to xyz.com. Click here if it doesn't work"
      Signature
      Article Marketers: Instantly Leverage Your Work And See An Explosion In Traffic And Sales

      Click Here to discover how
      {{ DiscussionBoard.errors[1635911].message }}
  • Profile picture of the author mlmguru
    I see this post is kind of old, but how could you do this with xsitepro?
    {{ DiscussionBoard.errors[2960672].message }}

Trending Topics