我有一个 XML 文件,只能通过访问 domain.com/file.xml 获得。当有人访问我希望它被下载而不是在浏览器中打开的链接时。没有物理链接,只有必须放在地址栏中的域链接。
有任何想法吗?
最好的方法是指定特定的标头,例如使用 PHP。PHP 文档提供了一个很好的示例
:
<?php
$file = 'file.xml';
if (!file_is_readable($file)) {
return;
}
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: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_end_clean();
readfile($file);
添加上面的代码download.php
并将文件上传到file.xml
目录。
现在您可以通过访问下载文件domain.com/download.php
。
这是最好的跨浏览器兼容解决方案。
其他服务器端语言也可以完成这项工作。