Hi @
The issue is the link https://www.akasolutionsllc.com/.well-known/apple-developer-merchantid-domain-association is not returning the text of the domain association file. You should do the following:
- Login to your server and check the root directory of your WordPress installation and see if the
/.well-known directory exists and the domain association file is there.
- If it doesn’t exist, manually add the domain association file.
- Once you have done that, click the register domain button again.
- If that doesn’t work, make sure your webserver is configured to output the domain association file correctly. If you’re using nginx, your config should have something like the following:
location /.well-known {
allow all;
default_type text/plain;
}
Kind Regards
Thread Starter
devseo
(@devseo)
Hi, thanks for your reply! I am using AWS Linux server (Bitnami) could you please guide step by step how to fix it?
Thank You
Thread Starter
devseo
(@devseo)
Hello, It’s AWS Apache server, please guide me to fix it
Thank You
Thread Starter
devseo
(@devseo)
Hello, I have migrated my website on Hostinger hosting but I am still getting the same error!
please help me to fix this I have no Idea what to do!
Thank you
Hi @devseo
You will need to lookup the configuration guide for your Apache server, which should have instructions on how to ensure the domain association file is served correctly.
With Apache, you can modify the main configuration file, or add a .htaccess file in the well-known directly that adds the text/plain mime type.
If you search on Google there are guides on what to do.
Kind Regards