View file wapirate/xhtml/getit.php
<?php
$type = $_GET['type'];
$file = $_GET['file'];
$stp = $_GET['stp'];
if($stp==""){
$filex = "http://www.jamglue.com/$type/$file/download.mp3";
}else{
$filex = $stp;
}
header("Location: ".$filex);
?>