我正在尝试强制另存为对话框。但是,需要注意的是,我正在尝试使用 bit.ly 来跟踪下载统计信息。这就是我试图达到这种效果的方式。
我的 .html 文件:
<area shape="rect" coords="51,1004,303,1263" href="mp3_download?downloadurl=http://bit.ly/1byeeR7" id="cult_download" />
和我的 php 文件:
<?php
$content = file_get_contents($_GET["downloadurl"]);
header("Content-Disposition: attachment;");
?>
这是使用我在How to save content/text of a web page by force save-as option中看到的内容。但是,它没有按预期工作。
欢迎提出更好的方法来跟踪下载统计信息!谢谢!