我在一个网址中有一个.mobileconfig文件。我从xcode发送Http帖子(当点击一个按钮时),http帖子包含.mobileconfig网址。单击按钮可以下载该文件吗?
答案 0 :(得分:3)
提供此文件时。它需要使用Content-Type
的MIME application/x-apple-aspen-config
进行投放。您可以通过在服务器的配置中添加一行或在文件夹中添加.htaccess
文件来执行此操作:
<IfModule mod_mime.c>
AddType application/x-apple-aspen-config .mobileconfig
</IfModule>
如果从PHP中提供文件,您可以执行以下操作:
header('Content-type: application/x-apple-aspen-config; charset=utf-8');
header('Content-Disposition: attachment; filename="company.mobileconfig"');
echo $mobileconfig;
答案 1 :(得分:0)
小修正:不是“聊天”,而是Charset
。确定你想要哪个字符集:
header('Content-type: application/x-apple-aspen-config; Charset=utf-8');
header('Content-Disposition: attachment; filename="company.mobileconfig"');
echo $mobileconfig;