Rusty_Tripp_798
Mar 14, 2012Nimbostratus
iRule not working properly
Hello,
I am using the iRule below but when I enter http://site.name/bd, I don't get redirected to http://site.name/bd/folder/...
Any help would be greatly appreciated.
Rusty
when HTTP_REQUEST { if {(([HTTP::uri] equals "/") or ([HTTP::uri] equals "/levi_b2b/init.do"))} { HTTP::uri "/levi_b2b/init.do" } elseif {[HTTP::uri] equals "/bd*"} { HTTP::uri "/bd/public/frameset_top_html.jsp" } else { HTTP::redirect http://leo.levi.com/index.htm } }