You can put a passthrough script:
$filename = $_GET['file'];
$filesize = filesize('./downloadfolder/' . $filename);
header('Pragma: public');
header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
header('Content-Transfer-Encoding: none');
header('Content-Type: application/octetstream; name="' . $filename . '"'); //This should work for IE & Opera
header('Content-Type: application/octet-stream; name="' . $filename . '"'); //This should work for the rest
header('Content-Disposition: attachment; filename="' . $filename . '"');
header("Content-length: $size");
readfile('./downloadfolder/' . $filename);
Well, that works for me, I'm sure some of it's pretty useless, but it works, and thats all that matters 😛