如何允许.htaccess密码保护的url类型?
我有一个网站有.htaccess密码保护。现在我想允许网站的某个网址。如何允许.htaccess密码保护的url类型?
https://www.exampale.com受密码保护。 但我不希望任何密码弹出显示为https://www.exampale.com/test/page/ {变量}
这可能在.htaccess文件?
需要扭转Password protect a specific URL
回答:
您可以结合mod_setenv
指令使用它作为:
# set variable NO_PASS if URI starts with /test/page/ SetEnvIfNoCase Request_URI "^/test/page/" NO_PASS
# Allow NO_PASS but ask for password otherwise
AuthType Basic
AuthName "My Protected Area"
AuthUserFile /Full/Path/To/passwords
Require valid-user
Satisfy any
Order deny,allow
Deny from all
Allow from env=NO_PASS
以上是 如何允许.htaccess密码保护的url类型? 的全部内容, 来源链接: utcz.com/qa/263873.html