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

vinod1's avatar
vinod1
Icon for Altostratus rankAltostratus
Nov 22, 2022
Solved

iRULE - Redirect irule - Help required

Hello ,  I am working on a redirect request using an iRULE User has requested the following redirect, https://abc.xyz.com/Projectsite/*   to  redirect to    https://bbb.xyz.com/page/projectdocs-us...
  • Hi vinod1 , 
    you can do it without wildcard in uri , it is sufficient to use "starts_with" operator. 
    Please check this : 

    when HTTP_REQUEST {
       if { [HTTP::host] equals "abc.xyz.com" && [HTTP::uri] starts_with "/Projectsite/"}{
       HTTP::redirect "https://bbb.xyz.com/page/projectdocs-users/"
       }
    }

    I hope it fits with your requirements 
    Regards