Select a different theme
Read error for a file with a specific extension. The cause was the following description on the domain root side.
<FilesMatch "\.txt$">
Order Allow,Deny
Deny from all
</FilesMatch>Change “Deny” to “Allow” only for the relevant directory as follows.
<FilesMatch "\.txt$">
Order Allow,Deny
Allow from all
</FilesMatch>The problem has been resolved successfully.