Regarding Apache configuration with WebLogic
The user name and password authentication is configured in apache, but the user name and password need to be entered twice in the browser.
Apache Version:2.4
Weblogic Version:12c
1.Configuration content of Apache httpd.conf:
<Location /Moyl/test>
AuthType Basic
AuthName "Restricted Content"
AuthUserFile "D:\Moyl\test\.htpasswd"
Require valid-user
</Location>
2.Configuration content of Weblogic Weblogic_wl.conf:
<IfModule mod_weblogic.c>
<Location /Moyl/test>
SetHandler weblogic-handler
WebLogicCluster 127.0.0.1:6003
DynamicServerList OFF
</Location>
</IfModule>
The first access is apache require credentials, the second is weblogic, how to ignore the second require credentials from weblogic.Please help me Thank you very much!