官方驗證可行性:
curl -v https://app-site-association.cdn-apple.com/a/v1/your domain
apple-app-site-association 文件內容
{
"applinks": {
"details": [
{
"appIDs": [ "TeamID.BoundleID" ],
"components": [
{
"/": "/匹配的路徑/*",
"comment": "注釋介杆,匹配路徑下都會有“打開”提示"
}
]
}
]
}
}
cd /xxx
touch apple-app-site-association
vim apple-app-site-association
nginx 配置
# iOS Universal Link 配置,在用戶打開這個鏈接時可以無縫重定向到對應的APP,且不需要通過Safari瀏覽器。
location /.well-known/apple-app-site-association {
alias /xxx/apple-app-site-association;
add_header Content-Type application/json;
}
location /apple-app-site-association {
alias /xxx/apple-app-site-association;
add_header Content-Type application/json;
}