header('Content-Type: application/force-download');
header('Content-Type: application/octet-stream');
header('Content-Type: application/download');
header('Content-Disposition: attachment;filename='.$fileName);
header('Content-Transfer-Encoding: binary');header('HTTP/1.1 301 Moved Permanently');
header('Location: http://'.$url, true, 301);
exit;