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

ecwlam's avatar
ecwlam
Icon for Altostratus rankAltostratus
Dec 22, 2022
Solved

iRule redirection

May I know how to write the iRule with uri redirection? https://www.abc.com/aa  --> https://www.abc.com/bb including the correspoing link under https://www.abc.com/aa For example: https://www.abc...
  • muhamed_elfiky's avatar
    Dec 23, 2022

    Hi ecwlam 

     

    you can use this  IRule:

    when HTTP_REQUEST {

    if {[HTTP::uri] starts_with "/aa/"} {

    HTTP::uri [string map {"/aa/" "/bb/"}[HTTP::uri]]

    HTTP::redirect "[HTTP::uri]"

    }

    }