How can a question mark ?
be specified as part of the paths
pattern in the apple-app-site-association
file?
The path should match the URLs:
domain.com/?a
domain.com/?ab
domain.com/?abc
...
The following does not work:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "<myAppId>",
"paths": ["/\?*"]
}
]
}
}
That's not supported. From Apple:
If you have access to the configuration of the server, you might want to try rewriting these as path-addressable, rather than query addressable resources, either by an alias, rewrite rule, or similar mechanism.