在我的安全 apache2 站点文件中,我有
<IfModule mod_ssl.c>
NameVirtualHost 192.168.1.1:443
SSLStrictSNIVHostCheck off
<VirtualHost 192.168.1.1:443>
...
ProxyPass /subdirectory http://another.site/anotherdir/
ProxyPass /subdirectory/ http://another.site/anotherdir/
<Location /anotherdir/>
Order allow,deny
Allow from all
</Location>
</VirtualHost>
</IfModule>
当我的用户点击 proxypass 时,系统会提示他们输入 apache 用户名和密码。我该如何绕过 apache 用户名和密码?我做错了什么?
答案1
尝试RequestHeader unset Authorization
在行前添加到您的配置中ProxyPass
。