WordPress htaccess管理面板提示主要密码

时间:2014-10-17 15:06:28

标签: php wordpress apache .htaccess

我在/ wp-admin文件夹中的htaccess文件中有以下内容:

AuthType Basic
AuthName "Example"
AuthUserFile "/home/username/.htpasswds/public_html/example.com/wp-admin/passwd"
require valid-user

由于某种原因,当我加载一个wordpress文章时,它会提示进行身份验证。 主页很好,但个别文章提示输入密码。

1 个答案:

答案 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>