Peter_L_71637
Oct 14, 2013Nimbostratus
Rewrite HTTPS URL
Hi, Is there anyone who can help me with the following problem?
My internal server is configured to access a URL: https://sample.domain.com/soap/ There is no possibility to change the above URL in the server (that would be to easy).
The supplier is changing the URL to https://sample.domain.com/soap/test/ I want to rewrite the URL in my F5 LTM through a VIP. Can anyone help me with a example iRule to do the trick? Greetings Peter
section from reply above. To change the URI, you can have the VIP iRule change that before your forward out. If the server does not respond to redirects like a browser:
when HTTP_REQUEST { if { [HTTP::uri] equals "/soap" } { HTTP::uri "/soap/test" } }