You will need to register a custom URL scheme, since iOS and OS X have no way to redirect a specific node in the URL scheme.
Typically, you can use something like x-myapp: as the URL scheme.
In addition, the URL identifier is not a host, but the identifier that describes the URL scheme, like the UTI identifier for a file type, describes a specific file type. For example, you can use com.myCompany.myApp.url or something similar to an identifier.
You should be fine if you create an x-myapp: form layout, and then use it as a redirect URL.
An example of the proposed Info.plist would be:
<dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLName</key> <string>com.myCompany.myApp.url</string> <key>CFBundleURLSchemes</key> <array> <string>x-myapp</string> </array> </dict>
CFBundleURLName in the Xcode GUI matches the URL Identifier .
source share