Forum Discussion

Kate_Kattar_107's avatar
Kate_Kattar_107
Icon for Nimbostratus rankNimbostratus
Aug 14, 2008

Prepend uri - simple

Hi, I am trying to write a very simple irule. I need to add /abc to the hostname if just the hostname is entered.

 

 

Could someone please help?

 

 

Kind Regards

 

Kate
  • Hi Kate,

    Here is example

     
     when HTTP_REQUEST { 
       if { [HTTP::uri] equals "/" } { 
         HTTP::uri /abc 
       } 
     } 
     

    Click here for more info about HTTP::uri

    I hope this helps,

    CB