а что на насчет такого
var download = document.createElement("a");
download.href = "
https://test.ru/old/url/test.ru/temp/file.doc" ;
download.download = "file.doc";
download.style.display = "none";
download.id = "download";
document.body.appendChild(download);
document.getElementById("download").click();
document.body.removeChild(download);
download = undefined;