Big-IP F5 irule to change uri

3.1k Views Asked by At

Is there a way to change a URI without a redirect. I want to change the following URL

https://example.com//q//w//et

to

https://example.com/q/w/et
1

There are 1 best solutions below

0
On

Yes, that's what iRules are made for.

when HTTP_REQUEST {
   if { [HTTP::uri] equals "/q//w//et" } {
      HTTP::uri "/q/w/et"
   }
}

Have a look here:

https://devcentral.f5.com/s/question/0D51T00006j2rZDSAY/replace-part-of-uri