Message | Here is a ASP redirector for OWA if you have users that forget the /exchange for access to OWA.
*EXAMPLE*
Correct address: https://servername/exchange (servername equals the IP or dns name)
Incorrect address: https://servername
Here is what to do to make the incorrect address redirect to the correct address.
Open Notepad and enter the following(ENTER TEXT IN-BETWEEN THE DASHES ONLY): -----------------------------------------
<% Response.Redirect "/Exchange" %>
-----------------------------------------
Save the file as default.asp
Copy this file to the root of your webserver (what points to https://servername/)
Now in IIS make sure the default document for (https://servername/) points to default.asp
Finished. |