0

有一个 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>
4

1 回答 1

0

when they call only empty url example.com they want to access example.com/ADZ

使用此规则:

RewriteEngine On
RewriteRule ^/?$ /ADZ [L,R]
于 2013-11-06T07:53:23.793 回答