How can i Redirect my pages(for my subscribers)? (instead of URL shortening scripts)?

Discussion in 'HTML & Website Design' started by eyes2005, Mar 22, 2010.

  1. #1
    When you have a long funny looking affilate link in your autoresponder series, (to clickbank affiliate products) what are the best ways to change these links so they look different, so they get redirected to the affilate page?

    URL shorternign scripts? can you recomment any?


    Can i alternatively do this,

    To find out a great resource, click this link ->
    www.mydomain.com/resource1.htm

    Which Redirects to the page resource1.htm, and when they land on this page, This page redirects to the visitor to the Affiliate url?

    So if i have 4 affiliate products, I would use these 4 urls

    www.mydomain.com/resource1.htm (-> redirects to clickbank 1)
    www.mydomain.com/resource2.htm (-> redirects to clickbank 2)
    www.mydomain.com/resource3.htm (-> redirects to clickbank 3)
    www.mydomain.com/resource4.htm (-> redirects to clickbank 4)

    If i wanted to set this method up- how would i do it? how can i redirect one of my pages (on my domain) to an affiliate clickbank page?
     
    eyes2005, Mar 22, 2010 IP
  2. canadianguy_001

    canadianguy_001 Peon

    Messages:
    97
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    i use a homemage php script:


    i call it go.php:

    <?php
    
    $to = $_GET['to'];
    if($to == 'google'){ 		$url = 'http://www.google.com'; }
    if($to == 'yahoo'){ 		$url = 'http://www.yahoo.com'; }
    
    header( 'Location: '. $url ) ; ?>
    PHP:
    Then you would just link to yoursite.com/go.php?to=google
     
    canadianguy_001, Mar 23, 2010 IP