次のような非常に単純な hide-download-path-script セットアップがあります。
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
.
ファイル名だけでなく拡張子も変更する方法はありますか?