4

我一定是过得很充实的一天。我似乎无法弄清楚这一点。

我的网站上有一个页面应该强制下载 msi 文件,但我想保留页面的 html 和下载说明。

到目前为止,我已经在 html 中尝试了以下标记(注意我只能访问此页面的正文)

<meta http-equiv="Refresh" content="0; URL=file.msi">

但是在Firefox中,这将二进制文件显示为乱码。

接下来我尝试插入以下php

$file = "file.msi";
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 5');
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;

但是,这关闭了选项卡/窗口,并且没有离开安装说明。

最后,我在 html 中尝试了以下内容:

<META HTTP-EQUIV="Content-Type" CONTENT="application/octet-stream"> 
<meta http-equiv="content-disposition" content="attachment; filename=file.msi" />

但这拒绝下载文件。任何指针都非常感谢。

4

3 回答 3

1

假设 Apache,如果你想使用一个.htaccess文件,你可以添加以下内容:

AddType application/octet-stream .msi

根据这个来源。然后,您可以链接到该文件。

于 2012-04-04T16:42:56.790 回答
0

<meta>标签适用于它们嵌入的页面。它们不会改变文件的下载方式,这被认为是一个完全独立的页面。

您应该有类似的东西,<a href="downloadmsi.php" target="_new" />download</a>以便下载发生在与说明页面不同的窗口中。

于 2012-04-04T16:37:32.730 回答
0

我发现这个链接帮助我创建了一个 PHP 文件以链接到该文件,该文件将指定要下载的 .msi。第一次工作。

可见下载页面,downloads.php,也许

<a href="/downloads/?version=App.Installer.msi">download now</a>

来自上述href的服务器处理页面,即example.com/downloads/index.php

$root = realpath($_SERVER["DOCUMENT_ROOT"]);
$file_dl = $_GET['version'];
header('Content-disposition: attachment; filename='.$file_dl);
header('Content-type: application/x-ole-storage');
readfile($root.'/downloads/'.$file_dl);

另外,不确定是否有必要,但我添加到 .htaccess 文件中:AddType application/octet-stream .msi正如Marc B所建议的那样

于 2013-01-22T17:22:23.797 回答