For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

1 Reply

  • Assuming that your virtual server has 10.10.10.1 as IP you might be able to try something like this?

    when HTTP_REQUEST {
    
        set uri [string tolower [HTTP::uri]]
    
        if{$uri eq "/"} {
            HTTP::uri "/XYZ/ABC
        }
    }
    

    /Patrik