Jump to content

Direct affiliate link to specific page


crazyfish

Recommended Posts

I would like the affiliate link to redirect to directly to my web hosting page instead of my main page, is this possible? I couldn't find it in the docs or in the admin panel.

 

I think this would help a lot as it would make the visitor not have to navigate through the site as much.

Link to comment
Share on other sites

  • 6 months later...
you just change the location in * :D

Based on the suggestion posted here, I edited * and added a URL for the affiliate landing page but it defaults to WHMCS home page. Is there something I have missed in the code below? Please advise of the proper method the redirect to a specific page.

 

<?php

 

define("CLIENTAREA",true);

 

include("dbconnect.php");

include("includes/functions.php");

 

if (isset($aff)) {

update_query("tblaffiliates",array("visitors"=>"+1"),array("id"=>$aff));

setcookie("WHMCSAffiliateID", $aff, time()+90*24*60*60);

}

header("HTTP/1.1 301 Moved Permanently");

header("Location: ".$CONFIG["http://www.otherlocation.com"]);

 

?>

Link to comment
Share on other sites

  • 3 years later...

You can do also something like this, if you want affiliate to make different redirects

 

if ($_GET['rdr'])

 

{

$url = $_GET['rdr'];

header("HTTP/1.1 301 Moved Permanently");

header("Location: ".$url,true,301);

 

}

 

else

 

{

header("HTTP/1.1 301 Moved Permanently");

header("Location: ".$defurl,true,301);

}

 

then put "&rdr=www.googole.com" at the end of affiliate link.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated