Question : OWA 2010 "the page isn't redirecting properly"...

I am trying to get http requests for OWA to go to https://server.domain.com/owa

I went through the article at:
http://briandesmond.com/blog/redirecting-owa-urls-in-exchange-2010/

And when I put in the http request it brings up my forms based login but when I login with my userid and password it goes on and displays the error about redirecting.

I have the feeling it's because it's one of the other virtual directories that's messed up and that's why the login page will work but not after, but I can't figure out what...

Answer : OWA 2010 "the page isn't redirecting properly"...

create a file called default.html
and insert in it the below code and put it in wwroot
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
<html> 
<head runat="server"> 
<title>Outlook Web Access</title> 
<script language="javascript" type="text/javascript"> 
function redirect() 
{ 
    var URL; 
    var Protocol; 
    var Path; 
    // this will be whatever is in the browser. If you need to change this then comment out relevant line below 
    // Protocol = window.location.protocol + "//" 
    // Protocol = "http://" 
    Protocol = "https://" 
    Path = window.location.hostname + window.location.pathname + "owa" 
    window.location.href = Protocol + Path 
} 

</script> 
</head> 
<body onload="redirect()"> 
</body> 
</html>
Random Solutions  
 
programming4us programming4us