Forum Discussion

Jason_19901's avatar
Jason_19901
Icon for Nimbostratus rankNimbostratus
Jul 25, 2011

Validate iRule

when HTTP_REQUEST {     Check if host is abc.com   if {[string tolower [HTTP::host]] eq "abc.com"}{     Rewrite the URI to /irj   HTTP::uri "/irj"   }   ...