我在/ wp-admin文件夹中的htaccess文件中有以下内容:
AuthType Basic
AuthName "Example"
AuthUserFile "/home/username/.htpasswds/public_html/example.com/wp-admin/passwd"
require valid-user
由于某种原因,当我加载一个wordpress文章时,它会提示进行身份验证。 主页很好,但个别文章提示输入密码。
答案 0 :(得分:0)
我找到了解决问题的方法。 它提示输入密码的原因是因为某些WordPress插件需要访问admin-ajax.php。
如果您在上面的引号顶部添加以下内容,则可以使用密码保护wp-admin文件夹。
# Allow plugin access to admin-ajax.php around password protection
<Files admin-ajax.php>
Order allow,deny
Allow from all
Satisfy any
</Files>