F5 is upgrading its customer support chat feature on My.F5.com. Chat support will be unavailable from 6am-10am PST on 1/20/26. Refer to K000159584 for details.

Forum Discussion

1 Reply

  • Could probably be optimised, and I haven't verified if this actually works, but a draft would be something like this.

    when HTTP_REQUEST {
        set uristring [HTTP::uri]
        
        if { $uristring ends_with "/" } {
            HTTP::uri [string tolower [$uristring]]
        } else {
            HTTP::uri "[string tolower [$uristring]]/"
        }
    }