我在我的网站上使用 URL 重写,我想通过 .htpasswd 文件将身份验证添加到我的目录之一。
我的网站是这样构建的
/home/website/
/home/website/protected/
/home/website/protected/.htaccess
/home/website/protected/.htpasswd
/home/website/protected/admin.php
/home/website/.htaccess
/home/website/index.php
/home/website/index_protected.php
在 /home/website/ 目录我有一个 .htaccess 文件:
RewriteRule ^directory([0-9]+)/protected/([a-z0-9-_]+).php /home/website/protected/admin.php?d=$1&p=$2 [QSA]
使用 url 之类的
http//website/directory1/protected/test.php
你会打电话给
/home/website/1/protected/admin.php?d=1&p=test
在来自 /protected/ 目录的 .htaccess 上,我得到:
AuthName "Page d'administration protégée"
AuthType Basic
AuthUserFile "/home/website/protected/.htpasswd"
Require valid-user
在 /protected/ 目录中的 .htpasswd 上,我得到:
admin:crypted_password
但我的问题是,当我打电话时
http//website/directory1/protected/test.php
我从来没有得到身份验证窗口,有什么办法解决这个问题吗?