我有一个非常简单的隐藏下载路径脚本设置,如下所示:
在 index.html 我有这个链接:
<a href="savefile.php">save</a>
在 savefile.php 我有这段代码:
$file = 'http://www.mysite.com/files/correct_horse_battery_staple.rar';
header("Content-Type: application/force-download");
@readfile($file);
这似乎确实有效,但不幸的是,它将文件下载为savefile.php
而不是correct_horse_battery_staple.rar
.
有什么方法不仅可以更改文件名,还可以更改扩展名?