Well-Known Route Setup¶
Well-known routes are defined by RFC 8615. They are commonly used for domain verification and other standardized discovery endpoints.
The URL structure is:
Common Examples¶
https://example.com/.well-known/apple-developer-merchantid-domain-association
Setup in Experience Builder¶
- Check out the latest copy of your website source code from Experience Builder.
- Create a directory named
.well-knownat the root of your project. - Use this exact casing:
.well-known(all lowercase). - Place your provider file into this folder. The filename should match the exact instructions from the provider.
- Add the extension
.wellknownto the end of the file name. - Commit and push this change to your Experience Builder website Git repository.
Content and Response Headers¶
- The well-known file content must be plain text.
- The response should return
Content-Type: text/plain. - The response should return
Cache-Control: no-cache.
Example Project Structure¶
Verification Tips¶
- Confirm the file path is reachable from your domain using the exact
.well-knownroute. - Confirm the file name and content match the provider requirements exactly.
- If verification fails, re-check folder casing and file naming first.