php redirect , cloaking affiliate links
Posted: Wed Jun 26, 2019 2:16 pm
https://vpsfix.com/6191/cloak-affiliate-links-php-file/
Code: Select all
<?php
$v = $_GET['v'];
// In case someone calls naked php file
if ($v == '') {$link = 'http://example.com/';}
// Add as many as links in below format. Each in a new line.
if ($v == 'product1') {$link = 'http://example1.com/';}
if ($v == 'product2') {$link = 'http://example2.com/';}
if ($v == 'product3') {$link = 'http://example3.com/';}
// Don't change anything below this line.
header("Location: $link") ;
exit();
?>