I have configured my AWS application load balancer to have the following rules:
/images/*
forward to server A (https://servera.com
)/videos/*
forward to server B (https://serverb.com
)
And this is correctly forwarding to the respective servers. However, I don't want the load balancer to forward the request as https://servera.com/images
& https://serverb.com/videos
. I just want the respective servers to be hit without the path pattern as https://servera.com
& https://serverb.com
(without the path patterns in the request).
I don't want to modify my request parameters or change my server side code for this. Is there a way I can tell the application load balancer to not forward the path patterns?