我有一个配置了基本身份验证的虚拟主机,但我想将一个网址列入白名单,因为它将从第三方API调用,我无法配置身份验证。我在这里阅读了其他问题,但是我无法理解它,这就是现在的样子:
<Location "^/this/url">
AuthType None
Order Allow,Deny
Allow from all
Satisfy any
</Location>
<Location />
AuthUserFile "/srv/.htpasswd"
AuthName authorization
AuthType Basic
require valid-user
Order Allow,Deny
Deny from all
Satisfy any
</Location>
所以我希望http://www.example.com
进行身份验证,但http://www.example.com/this/url
不进行身份验证。