Automatically append the /exchange/ portion to the URL when users go to the root directory of the exchange server's URL. Example: http://mail.company.com/ -redirects to- http://mail.company.com/exchange/ Copy and paste the following code into a new file named owa_redir.asp or replace the contents of default.asp with this code: <html> <head> <title>Exchange OWA</title> <%@language="jscript"%> <!--------------------------------------------------------------------------> <!--------------------------------------------------------------------------- Name..........: outlookwebaccess.asp Version.......: 0.1 Description...: IIS/Outlook Web Access scripts for URL redirection. Target OS.....: NT/2K/XP/2K3 Requires......: IIS/ASP,Exchange Last Modified.: 2005y-02m-16d Author........: Sean Blankenship (spcsys@gmail.com) Copyright.....: Copyright © 2005 Specialized Systems. All rights reserved. Notes.........: c:\net stop iisadmin /y -or- c:\iisreset ----------------------------------------------------------------------------> <!--------------------------------------------------------------------------> <% function append_exchange() { var url = new String() if(Request.servervariables('SERVER_PORT')==80) url += 'http://' if(Request.servervariables('SERVER_PORT')==443) url += 'https://' url += Request.servervariables('SERVER_NAME') url += '/exchange/' Response.redirect(url) } function main() { append_exchange() } main() %> <!--------------------------------------------------------------------------> </head> <body> <!--------------------------------------------------------------------------> <!--------------------------------------------------------------------------> Microsoft Exchange. Redirection In Progress... <!--------------------------------------------------------------------------> <!--------------------------------------------------------------------------> </body> </html>