readfile()を使うのがいいらしい。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?php $file = 'file.xpi'; if (file_exists($file)) { header('Content-Type: application/x-xpinstall'); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: ' . filesize($file)); ob_clean(); flush(); readfile($file); exit; } else { die("file_exists"); } ?> |
ここではコンテントタイプにapplication/x-xpinstallを指定している。Content-Dispositonなどをつければ保存させるときのファイル名をしていできる。ただしファイル名が日本語の場合はURLエンコードしないとならないと思う。