これは可能です。私が働いている会社でも同じことをしています。.ipa と .plist ファイルをサーバーに置き、.plist ファイルへのリンクを提供します。ユーザーがモバイル デバイスからリンクをクリックすると、アプリケーションをインストールするように求められます。
必要なのは、すべてのデバイスの UDID を、アプリケーションの署名に使用するプロビジョニング プロファイルに含めることだけです。
これは .plist ファイルの内容です。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>http://location of your .ipa file</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>your.app.identifier</string>
<key>bundle-version</key>
<string>3.5.2</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>app_title</string>
</dict>
</dict>
</array>
</dict>
</plist>
次に、plist ファイルへのリンクを追加します。
<a href="itms-services://?action=download-manifest&url=http://location-of-plist.plist">
Download application</a>