there are these steps from the apple developer page:
Adding support for universal links is easy. There are three steps you need to take:
Create an apple-app-site-association file that contains JSON data about the URLs that your app can handle.
Upload the apple-app-site-association file to your HTTPS web server. You can place the file at the root of your server or in the .well-known subdirectory.
Prepare your app to handle universal links.
So I see "You can place the file at the root of your server or in the .well-known subdirectory." is acceptable, but what about other directories and how would I make that work?
I ask because my domain website uses a nested directory to place an independent react app within the website. PreferablyI would be able to handle the Universal Linking documents here.
Thanks!