Forum Discussion

Andre-Germany's avatar
Andre-Germany
Icon for Nimbostratus rankNimbostratus
Nov 12, 2018

Forwarding to /owa blocked

I have the following problem: I have built a rule for Exchange, allowed only the URL https://xxxx.de/owa/*. For this I have set on "Allowed URL" the entry /owa *. Now I call the URL https: //xxxx.yyy/owa everything is okay On the server is a redirect from https://xxxx.de to https://xxxx.de/owa. I call now only https://xxxx.de is blocked accordingly. How can I handle this so that the automatic forwarding on https://xxxx.de/owa works?

 

  • You could create a LTM policy to redirect requests to "/" to "/owa" or use the iRule below:

    when HTTP_REQUEST {
        if { ([HTTP::uri] == "/") } {
            HTTP::redirect https://[HTTP::host]/owa/
        }
    }