I have a load balancing cluster set up with Apache 2.2 and Tomcat 7 nodes. I know clients wouldn't normally know the IP of the nodes, but I'm curious if there is a way to configure the nodes to redirect requests to the load balancer. Part of this already works, for example the url:
Request 1) https://<node-ip>/webapp
results in:
https://<lb-ip>/webapp
This is good.
But I get a 403 response if I specify any other url, such as:
Request 2) https://<node-ip>/webapp/ <-- note the extra slash
Is there a way to make Request 2 redirect to the load balancer?