自从order allow,deny
在2.4中被弃用,我想在中重写规则。htaccess文件以使用新规则。之前我使用:
<files wp-config.php>
order allow,deny
deny from all
</files>
我将其改写为:
<FilesMatch "wp-config.php">
Require all denied
</FilesMatch>
How do I confirm that my method is actually working? 我不确定黑客如何访问此文件,所以我不知道如何测试它。