<?
$url=$_REQUEST["w"];
$baslik=$_REQUEST["title"];

function dosyaUzantisi($strDosya) {
return ".".array_pop(explode(".", $strDosya));
}

$uzanti=dosyaUzantisi($url),;

header('Content-Description: File Transfer');
header('Content-Type: application/download');
header("Content-Disposition: attachment; filename=\"".$baslik."".$uzanti."\";");
header('Content-Length: ' . filesize($url));
@readfile($url) OR die();

?>

şeklinde diğer hostlarda indirme yapabiliyordum...