<?php
define('DOWN_rekl', '_'.$_SERVER['HTTP_HOST'].'_'); // реклама в именах при скачке
$id= $_GET['load'];
$url = 'http://allos.mobi/'.$id;
$hdrs = get_headers($url, 1);
$hdrs = array_change_key_case($hdrs, CASE_LOWER);
$link = str_replace(basename($hdrs['location']), getenv('HTTP_HOST') . '_' . basename($hdrs['location']), $hdrs['location']);
header('location: ' . $link);
?>