Registered users    
MembershipMembership:
Latest New UserLatest:Ron Ang
New TodayNew Today:9
New YesterdayNew Yesterday:5
User CountOverall:23401

Private messaging    
You must be logged in to use this module.
Top 10 posters    
NamePosts
Mariette Knap12949
Marina Roos12626
Eriq Neale2117
Stan Guinn1917
Michael Patrick1914
Robert Pearman1784
Nick Pieters1425
william warren634
Stewart Brown620
Kevin D.579
Welcome unauthorized visitor    
If you want to join us in the discussions on this forum you need to register first. Registration is free! If you are already a registered user please login to join the forum.
Small Business Server Support Forum    
Subject: Create Virtual Directory to OWA
Prev Next
You are not authorized to post a reply.

Author Messages
stefan B User is Offline
United Kingdom
Member since
1/6/2007

Registered Users
Posts: 33

9/03/2007 06:06 PM  
Hello,
 
Is there any way to create a Virtual directory, which can point at the OWA site.
 
Rather than typing www.mydomain.com/exchange
 
I want to be able to type http://mail.mydomain.com
 
Many Thanks.
Alan McBurney User is Offline
United Kingdom
Member since
8/17/2005

Registered Users
Posts: 19

9/04/2007 11:21 PM  
Hi Stefan

This is possible by using a simple piece of code*

Root access for OWA

Typing in an URL of https://exchange.company1.tld/exchange can be a bit tedious and you may prefer just to type https://exchange.company1.tld. You may have found that for the new virtual server you created, OWA is configured for the root of the Web site also. The steps needed to extend root access for OWA in the Default Web Site is very straight-forward.

The Default Web Site and the site we created in the second option above both pointed their root home directories to the c:\inetpub\wwwroot folder (assuming Windows was installed on drive C). If you don’t specify a file in the URL, IIS will try to return default.htm or default.asp or so on in that order: Therefore we need only create a redirection script in this location called default.asp and the job is done.

This is one way to create such a file:

  1. Click Start and Run on the Exchange server. In the Run dialog box type cmd in the Open box and click OK.
  2. At the command prompt enter the following commands (the ^Z character is entered by pressing the ‘Z’ key with the ‘Ctrl’ key held down):

c:
cd \inetpub\wwwroot
copy con default.asp
<%@ Language=VBScript %><% Response.Redirect "exchange" %>
^Z
exit

* http://www.msexchange.org/tutorials/Configuring-Exchange2003-HTTP-Remote-Access.html
You are not authorized to post a reply.



ActiveForums 3.7
Forum policy    
These Discussion Forums are dedicated to the discussion of the Small Business Server and related server and client software. For the benefit of the community please observe the following posting guidelines:
  1. No Advertising. This includes promotion of commercial products and non-commercial products which are not directly related to Small Business Server and related server and client software.
  2. No Flaming or Trolling.
  3. No Profanity, Racism, or Prejudice.
  4. Site Moderators have the final word on approving/removing a thread or post or comment.