iRule to Rewrite the URL without Redirection – F5 Networks

  1. Use the Below snippet to rewrite the http request.
  2. Associate it with the required VS.

when HTTP_REQUEST {

if { [HTTP::header Host] eq “zyx.com” and [HTTP::path] starts_with “/api”}
{
HTTP::header replace Host “abc.com”
HTTP::uri [string map {“/api” “”} [HTTP::uri]]
}
}

Was this article helpful?

Related Articles

Leave A Comment?