huijial 发表于 2018-11-27 06:22:00

Apache做Weblogic 的Proxy无法正确显示解决一则

LoadModule weblogic_module   modules/mod_wl_20.so 之后还要做什么?
Cluster 与单机同理
-----

#修改后端服务器组IP与端口,用“,”分隔
WebLogicCluster 202.102.1.2:7001,202.102.1.3:7001,202.102.1.4:7001
   MatchExpression *.jsp
   MatchExpression *.html
#   MatchExpression *.*
   MatchExpression *

-----
LoadModule weblogic_module   modules/mod_wl_20.so
LoadModule rewrite_modulemodules/mod_rewrite.so

#ServerName need modify   
   ServerName localhost
   #DocumentRoot /www/otherdomain
   RewriteEngine on
#根据需要确定是否打开rewrite日志
   #RewriteLog "C:\Program Files\Apache Group\Apache2\logs\rewrite.log"
   #RewriteLogLevel 3
##设置默认首页
#RewriteRule   ^/$/index.html
RewriteRule   ^/$/login/login.jsp
#
#
   
   
WebLogicHost 192.168.1.14
WeblogicPort 9003
   MatchExpression *.jsp
   MatchExpression *.html
#    MatchExpression *.*
   MatchExpression *
   





页: [1]
查看完整版本: Apache做Weblogic 的Proxy无法正确显示解决一则