Masz tutaj gotowca:
Kod php:
$files = "http://serwerZplikami/".$_GET['files']."";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header( "Content-Disposition: attachment; filename=".basename($files));
header( "Content-Description: File Transfer");
@readfile($files);
Plik ściągasz po wywołaniu: Kod:
http://twojastrona.pl/skrypt.php?file=nazwapliku
Można oczywiście zmodyfikować skrypt aby np. można było ściągać pliki z różnych hostów. Wystarczy dodać switcha:
Kod php:
switch($files)
{
case 'costam':
$files='linkdopliku';
break;