企业账号打包如何通过HTML页面打开

企业账号打包后

Plist文件加入前缀 href="itms-services://?action=download-manifest&url=
Plist文件在服务器中的地址为:https://www.hangge.com/ios/manifest.plist

完整路径代码如下:

<DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>hangge.com</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
</head>
<body>
  <a href="itms-services://?action=download-manifest&url=https://www.hangge.com/ios/manifest.plist">点击开始安装App</a>
</body>
</html>

原文地址:https://www.cnblogs.com/qqcc1388/p/5782698.html