Hi,
I have the below two Location directives configured in my httpd.conf (using with Apache HTTP Server 2.0.50 ), The idea is to seperate only the "/test123" urls and send them to a different server, the problem is all the urls including the ones with /test123 are going to the second one. Am I missing something or do I need to do something else to configure it to work correctly ? <Location /test123> SetHandler weblogic-handler WebLogicCluster 172.26.251.175:9000 ConnectTimeoutSecs 1 ConnectRetrySecs 1 WLIOTimeoutSecs 200 Idempotent OFF WLLogFile /var/opt/projects/sdf5.2/elatalogs/billing/apache/logs/ server00x/webapache.log Debug OFF ErrorPage http://172.26.251.177/manual/invoking.html </Location> <Location /> SetHandler weblogic-handler WebLogicCluster 172.26.251.176:8005,172.26.251.177:8007 ConnectTimeoutSecs 1 ConnectRetrySecs 1 WLIOTimeoutSecs 200 Idempotent OFF WLLogFile /var/opt/projects/sdf5.2/elatalogs/billing/apache/logs/ server00x/webapache.log Debug OFF ErrorPage http://172.26.251.177/manual/invoking.html </Location> Thanks, Chaitanya |