When you distribute enterprise apps over iOS7.1 by URL, you need to use SSL to distribute the plist. If you use HTTP, you will be quoted as "Unable to install the application because the" example.com "certificate is invalid. "The right way is to use HTTPS, which is <a href=" itms-services://?action=download-manifest&url=https://example.com/do/ Manifest.plist ">app install</a>
Next, it's clear that SSL is enabled for the "example.com" site (how to enable, ask Niang). However, when enabled, HTTPS is also used. Perhaps the system will still report "Connotconnect to" example.com ". "(" Cannot connect to "example.com"). This problem occurs because the Web site certificate that your Web server uses is not issued by a secure certificate authority, that is, a certificate that cannot be recognized by the browser as secure. Typically, you need to request a signed certificate from a certification authority (Creatinga signed certificate that's issued by a certificateauthority). But... It's too expensive. The online approach, usually using Dropbox, is to distribute plist files. Unfortunately, Dropbox is on the wall. Yes, it's a wall. Here's how to distribute plist files using github.com, which is also a wall.
1. Login github.com (if no account is created, create github.com account)
2. Select Create repositories
3. Create a project with a readme, and fill in a project name.
4. Click "+" to add a file
5. Copy the contents of the Plist file and take a name for the file
6. After saving, click "Raw" to get the address of the plist file. such as "Https://raw.githubusercontent.com/MyAccount/MyApp/master/manifest.plist"
Change the URL above to the form below and you're done. <a href= "Itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/myaccount/myapp /master/manifest.plist ">app install</a>
Enterprise app Deployment on IOS 7.1 by GitHub