Forum Moderators: open
Are you sure it is Googlebot
66.249.67.180 - - [29/Sep/2015:15:30:32 -0700] "GET /apple-app-site-association HTTP/1.1" 404 1432 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
although now that I look more closely, there were also some requests from--the plot thickens--the Applebot at 17.blahblah. Only back then; not now. 66.249.64.188 - - [14/May/2017:05:37:08 -0700] "GET /apple-app-site-association HTTP/1.1" 404 6256 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
I'd call that the Googlebot, wouldn't you? ".well-known" is a file that many shared hosts (ah em) put in accountsNot mine, evidently, since Googlebot didn't find one. (Leading . in a directory name? Even apache dot org doesn't do that.)
'Let's Encrypt' adds a .well_known/ folder to your site to authenticate the certificate.source: help.dreamhost.com
Starting with a dot hides it
(Leading . in a directory name? Even apache dot org doesn't do that.)
In Unix, a leading period means the file or folder is normally hidden.
this is boilerplate for most http.conf file
they say to add this to your htaccess file:Over my dead body ;) Now, maybe
RewriteRule ^.well-known/(.*)$ - [L]
RewriteRule ^\.well-known/ - [L]
...to allow the .well-known/ directory to be installed, which (upon further reading) is necessary to update the cert's key every 90 days.