https://yourdomain.com/.well-known/apple-app-site-association without redirects and with Content-Type: application/json. To enable iOS Universal Links, you need to host an Apple App Site Association (AASA) JSON file at a specific location: https://yourdomain.com/.well-known/apple-app-site-association. Webflow does not natively support hosting static files at this required path, but you can implement a workaround.
/.well-known/apple-app-site-association.Content-Type: application/json (not application/json; charset=utf-8 or text/plain).
/.well-known/.
To meet Apple’s requirements, you need to use a proxy server or CDN edge function—here are options:
/.well-known/apple-app-site-association and serves the static AASA JSON./.well-known/..., return the static JSON file with correct headers; else passthrough to your Webflow site.
/.well-known/apple-app-site-association and return the file from S3 or inline.
links.yourdomain.com, as long as the subdomain is registered in your app’s Associated Domains entitlement.
npm install -g wranglerhttps://yourdomain.com/.well-known/apple-app-site-association.
Webflow cannot natively host the AASA file at the required /.well-known/ path. To enable Universal Links, host the file externally—preferably using Cloudflare Workers or similar edge functions—and serve it directly with no redirects and correct headers.