我在 public_html 目录的根目录中有一个标准的 WordPress 安装,带有这个 .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我想用 AuthType Basic 保护包含其他应用程序的目录 /manager,所以我的 .htaccess 看起来像:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
AuthUserFile .htpasswd
AuthType Basic
AuthName "Admin Area"
Require valid-user
这是我的基本结构:
/.htaccess
/index.php
/manager/.htaccess
/manager/index.php
现在,当我尝试访问 /manager 目录时,我从我的 WordPress 安装中收到 404 Not Found。为什么?