crazyfish Posted March 23, 2009 Share Posted March 23, 2009 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. 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted March 24, 2009 Share Posted March 24, 2009 you just change the location in * 0 Quote Link to comment Share on other sites More sharing options...
crazyfish Posted March 24, 2009 Author Share Posted March 24, 2009 Hi thanks for the suggestion but i was hoping there was a configurable option that wouldn't be overwritten with updates. 0 Quote Link to comment Share on other sites More sharing options...
peeta Posted October 10, 2009 Share Posted October 10, 2009 you just change the location in * 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"]); ?> 0 Quote Link to comment Share on other sites More sharing options...
hideipvpn Posted March 20, 2013 Share Posted March 20, 2013 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. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.