在Joomla自动更新程序中,文件是从一个域中请求的
http://download.abc.com/?ext=addmenu&src=core&pro=1&file=update.zip
然后下载另一个文件
/mnt/storage/vhosts/newdomain.com/httpdocs/tmp/addmenu-v1.1.4.zip
我一直试图通过调用文件release.php来模仿这种效果,
header("Location: /addmenu/updates/com_addmenu.zip");
但是它只是下载release.php而不是com_addmenu.zip
我也尝试过
header('HTTP/1.1 307 Temporary Redirect');
标头之前(位置
但是我无法以这种方式工作。我猜想我不能用一个文件替换另一个文件,但我希望有人能提供帮助。
谢谢
答案 0 :(得分:0)
我了解到您的服务器上有一个zip文件,当他/她打开您的webpage.php时,访问者的浏览器应使用不同的名称下载该文件。
<?php
$file_url = '/addmenu/updates/release.zip';
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header('Content-disposition: attachment; filename=com_addmenu.zip');
readfile($file_url);