Mike_59458
Sep 14, 2011Nimbostratus
Redirect on URI
Looking for some help to finish off this irule. I am trying to redirect to http error message 401 if the virtual server gets HTTPS://MAIL.DOMAIN.COM/OWA. All other URI can pass but need to block the /OWA. What I have so far is:
when CLIENT_ACCEPTED {
HTTP::enable
}
when HTTP_REQUEST {
if { [HTTP::URI] eq /owa }
then {
How do I return a 401 error?
Mike