11.16
In my previous post I talked about how to accomplish a redirect, however there is a small snag:
Using a redirect page without enough text in the HTML file will, in some browsers (*ahem*IE*ahem*) cause them to use their own copy of the error page. This copy won’t have a redirect to the site, obviously, and it won’t work. This can be solved by changing the page to something like this:
<html>
<head>
<title>Microsoft Exchange Web Access - Redirect</title>
<META HTTP-EQUIV="Refresh"
CONTENT="1; URL=https://email.domain.com/owa/">
</head>
<body>
This page is attempting to redirect you to <a href="https://email.domain.com/owa/">https://email.domain.com/owa</a><br>
If you are not redirected within a few seconds, please click the link above to access Outlook Web Access.
</body></html>
No Comment.
Add Your Comment