jedi755_42158
Apr 05, 2012Nimbostratus
iRule redirect OWA and https
Hello, I am trying to write an iRule which redirects traffic to /owa and to https.
User---> http://webmail.mycompany.com
iRule---> https://webmail.mycompany.com/owa
Here is what I have so far:
when HTTP_REQUEST {
if { [HTTP::path] equals "/" } {
HTTP::redirect "https://webmail.mycompany.com/owa"
}
}