View Single Post
Old 05-25-2013, 01:38 PM  
Dankasaur
So Fucking Fossilized
 
Industry Role:
Join Date: Sep 2011
Posts: 1,432
Quote:
Originally Posted by Captain Kawaii View Post
I like the masking technique of the ref codes the most. Wish I knew how he does that. Cool beans.
Basic concept:

Code:
<?php
$sites = array(
    'site1' => 'http://www.site1.com',
    'site2' => 'http://www.site2.com
);

$site = $_GET['site'];

header('Location: ' . $sites[$site]);
?>
Then you just call it, yoursite.com/redirect.php?site=site1 and use like htaccess to rewrite it to be yoursite.com/go/site1
Dankasaur is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote