按照网络上的一些指南,我为我的 WordPress 安装创建了以下 .htaccess:
# protect the htaccess file
<files .htaccess>
order allow,deny
deny from all
</files>
# protect wpconfig.php
<files wp-config.php>
order allow,deny
deny from all
</files>
加chmod wp-config.php 600 and .htaccess 644
。
测试它是否正常工作的最简单方法是什么?以防万一,我可以创建一些其他文件来验证工作。我只想确定一下。
答案1
答案2
要测试指令是否有效,只需尝试浏览文件:
http://yoursite.com/wp-site/.htaccess
http://yoursite.com/wp-site/wp-config.php
访问文件时,您应该会看到一个错误页面。尝试删除指令并再次测试,看看是否会加载有效页面。-