gpt4 book ai didi

.htaccess - vCard .vcf 文件下载浏览器支持 - godaddy

转载 作者:行者123 更新时间:2023-12-02 23:52:15 25 4
gpt4 key购买 nike

我在网站上有一个下载 vCard (.vcf) 链接。它可以在本地运行,但不能在线运行。只需在浏览器中打开文件而无需下载。我宁愿不用压缩它。

仔细阅读后发现我需要添加以下内容:

AddType text/x-vcard .vcf

在 .htaccess 文件中。但它仍然不起作用。我错过了什么吗?

该网站由 godaddy 托管。我在某处读到的一个旧线程有一个人使它工作,但除了 .htaccess 位之外没有更多信息。

最佳答案

第一步,询问 Godaddy 他们是否支持 AddType 指令,如果支持,如何支持。该解决方案肯定会更好。

或者,您可以使用发送正确 header 的原始 PHP 脚本来解决此问题。

contact.php(未经测试):

<?php
# Send correct headers
header("Content-type: text/x-vcard");
// Alternatively: application/octet-stream
// Depending on the desired browser behaviour
// Be sure to test thoroughly cross-browser

header("Content-Disposition: attachment; filename=\"contact.vcf\";");
# Output file contents
echo file_get_contents("contact.vcf");
?>

这将为 VCF 文件提供正确的 header 。

关于.htaccess - vCard .vcf 文件下载浏览器支持 - godaddy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5116772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com