Welcome to HostingForumz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Configuring OWA 2003 FE server on IIS 6.0 for auto-redirect?

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  Certificate created using Windows 2003  
Author Message
robert_gordon

External


Since: Jan 22, 2004
Posts: 1



(Msg. 1) Posted: Thu Jan 22, 2004 5:05 pm
Post subject: Configuring OWA 2003 FE server on IIS 6.0 for auto-redirect?
Archived from groups: microsoft>public>inetserver>asp>general, others (more info?)

I now realize I probably should have tried posting this on the IIS board
first..

I am running OWA 2003 Server as Front End server to my Exchange 2000 native
domain. The FE server is secured by a 128 bit SSL cert. The OWA 2003
server is running on Windows 2003 server in a Windows 2003 native AD domain.

At present, the server is configured so that user's have to specifically go
to the URL httpS://myserver.company.com in order to access OWA securely.
The FE server then automatically redirects the user to the /Exchange
subdirectory allowing for access to their backend mailbox.

However, I would prefer to be able to have users be able to simply go to
httP://myserver.company.com and have the FE server automatically redirect
them to the httpS://myserver.company.com URL, instead of forcing them to
make sure they're using httpS from the get go.

However, attempting to make this change at the root level of the web server,
automatically propagates the redirect changes all the way down to the
/exchange subdirectory, creating an infinite loop.

What do I need to change on the FE server's IIS configuration to allow this
auto-redirect to happen?

 >> Stay informed about: Configuring OWA 2003 FE server on IIS 6.0 for auto-redirect? 
Back to top
Login to vote
kenremove

External


Since: Aug 23, 2003
Posts: 3041



(Msg. 2) Posted: Fri Jan 23, 2004 2:48 pm
Post subject: Re: Configuring OWA 2003 FE server on IIS 6.0 for auto-redirect? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If you want to redirect requests to httP://myserver.company.com *only* (ie
not other URLs like httP://myserver.company.com/someDocument.htm) then I
would:

a) create a default document (eg default.asp or default.aspx) and place it
into the root of your server.
b) please the following ASP code in the default.asp page:

<% @Language=VBScript EnableSessionState=False%>
<%
Response.Redirect("https://myserver.myCompany.com/exchange/")
%>


If you want to redirect *all* requests to any URL (except, obviously within
the /exchange folder itself) that are http://, then:
I would create a custom 403.4 error handler (for SSL required). This would
contain similar code to the one above that would redirect requests to the
/exchange/ folder. You would then "require" SSL for the server in question
(in the directory security tab of the IIS MMC Snapin), but remove SSL
requirement for the error handler page.
This article outlines the steps:
http://support.microsoft.com/?kbid=279681
However, it doesn't work for IIS6 unless you place the error handler page in
the same web app pool as the location the error is being generated in.

Cheers
Ken



"Robert Gordon" <Robert_Gordon.RemoveThis@nospam.perlegen.com> wrote in message
news:uwWbqPT4DHA.2184@TK2MSFTNGP10.phx.gbl...
: I now realize I probably should have tried posting this on the IIS board
: first..
:
: I am running OWA 2003 Server as Front End server to my Exchange 2000
native
: domain. The FE server is secured by a 128 bit SSL cert. The OWA 2003
: server is running on Windows 2003 server in a Windows 2003 native AD
domain.
:
: At present, the server is configured so that user's have to specifically
go
: to the URL httpS://myserver.company.com in order to access OWA securely.
: The FE server then automatically redirects the user to the /Exchange
: subdirectory allowing for access to their backend mailbox.
:
: However, I would prefer to be able to have users be able to simply go to
: httP://myserver.company.com and have the FE server automatically redirect
: them to the httpS://myserver.company.com URL, instead of forcing them to
: make sure they're using httpS from the get go.
:
: However, attempting to make this change at the root level of the web
server,
: automatically propagates the redirect changes all the way down to the
: /exchange subdirectory, creating an infinite loop.
:
: What do I need to change on the FE server's IIS configuration to allow
this
: auto-redirect to happen?
:
:

 >> Stay informed about: Configuring OWA 2003 FE server on IIS 6.0 for auto-redirect? 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting Problem Solving Community! (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]