I think you still need a CORS header even with the redirect. Not working for me on snort
Discussion
Definitely. My CORS is all set.

Access to fetch at 'https://shawnyeager.com/.well-known/lnurlp/shawn' from origin '...' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
Thanks. I’m using Netlify, so this is in a .toml file, but I should be good.
[[headers]]
for = "/.well-known/*"
[headers.values]
Access-Control-Allow-Origin = "*"
i your [[redirects]] after to = "", you can add a new line with:
headers = { } to add the ACAO
I ended up serving the contents directly and I swap out the contents and/or proxy the remote.
Ugh i still need to figure out my CORS on my site to self list everything.

