通过app打开配置文件

时间:2012-02-24 06:32:15

标签: iphone objective-c xcode configuration-files

我在一个网址中有一个.mobileconfig文件。我从xcode发送Http帖子(当点击一个按钮时),http帖子包含.mobileconfig网址。单击按钮可以下载该文件吗?

2 个答案:

答案 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;