dalam folder download ditambahkan file .htaccess dan dalam file .htaccess diisi dengan
deny from all
kamudian buat sebuah file download.php seperti di bawah:
<?php
//--------
//disini kode untuk autentikasi user
//----------
$dir='path/to/file/'
if (isset($_GET["file"])) {
$file=$dir.$_GET["file"];
header("Content-type: application/force-download");
header("Content-Transfer-Encoding: Binary");
header("Content-length: ".filesize($file));
header('Content-disposition: attachment; filename="'.basename($file).'"');
readfile("$file");
} else {
echo "No file selected";
}
nantinya file download.php ini sebagai jembatan untuk download file, file ini akan diakses seperti ini http://example.com/download.php?file=namafile.ext