Force le téléchargement avec php.
function forceDownload($titre, $url) {
header('Content-Type: application/force-download; name="'.$titre.'"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: '.filesize($url));
header('Content-Disposition: attachment; filename="'.$titre.'"');
header('Expires: 0');
header('Cache-Control: no-cache, must-revalidate');
header('Pragma: no-cache');
readfile($url);
die;
}
forceDownload("titre_de_mon_fichier.jpg", "monfichier.jpg");