I’d like to add /.well-known/apple-app-site-association
to my website, but I can’t, because Webflow doesn’t support it, and I went all-in on Webflow during a Lottie-fueled scrollspy bender a few years ago.
Here’s how to host your AASA file for universal links while using Webflow - by using a worldwide distributed highly javascript available cloud edge application to replace a 355 byte static plaintext file that is requested about once a week by Apple’s CDN.

Use Cloudflare
- Use Cloudflare for DNS
- Disable SSL in your Webflow site’s settings - Cloudflare will handle SSL for you now.
- Enable Cloudflare’s proxying for the apex A record and
www
CNAME pointing to your Webflow site
Create a route
Allowing Cloudflare to proxy your website means you can intercept and work on requests at specific paths. They call these “routes”.
- Click your domain
- Click “Workers Routes”
- Click “Add route”
- Enter your route - probably
mycoolapp.com/.well-known/*
. - Leave Worker set to “None” and press “Save”
Create a worker
Still in the Workers Routes screen:
- Click “Manage Workers”
- Click “Create Application”
- Pick one of the templates - doesn’t matter, we’re going to empty it
- Give it a useful name (“well-known”)
- Click “Deploy”
Give your worker a script
- Copy and paste this worker script I made into the Cloudflare editor
- Edit the
appleAppSiteAssociationJSON
object - you need to replace theappIDs
and add/replace thecomponents
- Click “Save and deploy”
Assign the worker
- Tap the Cloudflare logo
- Tap your domain
- Tap “Workers Routes”
- Tap “Edit” next to the route you crated earlier
- In the “Worker” dropdown, select the “well-known” worker you just created
Testing the route
- Tap “well-known” in the Worker column
- Tap “Quick Edit”
- In the right half of the screen, enter the URL your apple-app-site-association file should live - it’s probably
https://mycoolapp.com/.well-known/apple-app-site-association/
- If you get a 200 OK response, and you can see your AASA JSON content in the response payload, you’re probably good!