Dreamhost でホストされている私のサイトでは、.well-known
ディレクトリに次のようなacme-challengeフォルダーが含まれています。.htaccess
# Permit access to the challenge files but nothing else
Order allow,deny
Allow from all
RewriteCond %{REQUEST_URI} ^/[.]well-known/acme-challenge/[a-zA-Z0-9_-]+$
RewriteRule .* - [L]
RewriteRule .* - [F]
したがって、apple-app-site-associationファイルを.well-known
に配置しても、表示されません。.htaccess
これを許可するように変更するにはどうすればよいですか? 次のような別の行に固執しますか
RewriteCond %{REQUEST_URI} /.well-known/apple-app-site-association
?? 私は何かを壊したくありませんし、これらのファイルの構文についてほとんど何も知らないので、かなりためらっています。