Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Sunny's avatar
Sunny
Icon for Nimbostratus rankNimbostratus
Apr 11, 2017

Need irule to redirect

Hi Thanks for your time and help

 

I want to redirect following

 

Redirect from https://abcd.f5.com to https://abcd.f5.com/PORTAL

 

Any help or advice would be greatly appreciated. Thanks.

 

2 Replies

  • You could try something like this.

    when HTTP_REQUEST {
      switch -glob [string tolower [HTTP::path]] {
        "/" {
            HTTP::redirect "/PORTAL"
        }
    }