Im using my F5 BIGIP (v13) as reverse proxy to publish some websites by using local traffic policies. But i need to perform a URL rewriting. To be specific, i need to strip a string from the URI path.
It could be done using an IRule:
when HTTP_REQUEST{
if { [string tolower [HTTP::uri] ] starts_with "/path1" } {
HTTP::uri [string
… Read more