.well-known gets ignored

Hi, @Isabella. Actually there is a workaround, for the folders starting with a dot being ignored as well. The workaround is to use the redirect to “add” the dot back to the beginning of the path.

This works as follows.

  1. Instead of making the directory .well_known/ make it just well_known without the preceeding . character.
  2. Then make a redirect rule like so:
/.well_known/*  /well_known/:splat 200

With that rule, you can upload the file as /well_known/something_here but successfully request the file at /.well_known/something_here. The redirect sends the required path (with a dot) to the “non-dot” path where the file can be found.

If that doesn’t work or if there are other questions, please let us know.