有一个 apache 服务器,在 apache 服务器后面有四个 weblogic 节点。客户端调用apache服务器;example.com/ADZ,example.com/media,example.com
客户希望,当他们只调用空 url example.com 时,他们想访问 example.com/ADZ 你能帮我吗?
这是可能的配置。
<IfModule mod_weblogic.c>
WebLogicCluster wls1:7003,wls1:7005,wls2:7003,wls2:7005
</IfModule>
RewriteEngine on
RewriteRule ^(.*) /ADZ [R]
<Location /ADZ>
SetHandler weblogic-handler
</Location>
<Location /media>
SetHandler weblogic-handler
</Location>