Forum Discussion

Ajose_Olowooker's avatar
Ajose_Olowooker
Icon for Nimbostratus rankNimbostratus
Apr 23, 2015

Redirection

Hi Team, I need some help

 

I need to configure URI redirection as below . Can you Please help me to create IRULE That will redirect the current http://ABC.com/4/5/WT site to point to a ABC01.com/Mt while they do the change, then permanently to point to http://XYX.BBB.com

 

1 Reply

  • Try this & let me know if any issue.

        when HTTP_REQUEST { 
             if { [HTTP::uri] starts_with "/4/5/WT" } {
                     HTTP::redirect "http://ABC01.com/Mt"  
                     }  
                     elseif  { HTTP::redirect "http://XYX.BBB.com"  }
                }