Link to home
Start Free TrialLog in
Avatar of heze54
heze54Flag for Spain

asked on

problems with iis and exchange

Hi,


I have a new exchange 2010 server...still in testing mode. OWA access works very fine at 443 port, but I always must introduce or use https://fqdn/owa, and when I only use https://fqdn an IIS screen is shown.

I´d like to use only https without owa. possible?

I´m newbie with iis only some months experience, I ve been working with apache since 2000

Any idea?

regards
ASKER CERTIFIED SOLUTION
Avatar of GundogTrainer
GundogTrainer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can do this by typing http://fqdn and create a modify the error page with redirect command to open https://fqdn/owa

Try adding or editing the custom error page when you open http://fqdn with a redirect in the header of the HTML.

If you go to custom errors section and find the error page (it's 403,4 in IIS 6 for the "this page requires ssl" page) It should give you the path the html files. Browse to the path and add this to the above the first meta tag in header of the html file using notepad:

<meta HTTP-EQUIV="REFRESH" content="0; url=https://publicurl/owa">

Then when the person browses to the url that requires SSL it'll automatically redirect them to the public OWA url using HTTPS.
Avatar of heze54

ASKER

Lovey a+++++
Additional you can create a html file in your c:\inetpub\wwwrooot called for example redirect.htm

and add the next code to the page.

<HEAD>
<SCRIPT language="JavaScript">
<!--
window.location="https://fqdn/owa";
//-->
</SCRIPT>
</HEAD>

And in Administrative tools - IIS Manager - Sites - Default Web Site - Default document - Add and put the name for your redirect.htm and make sure this is ther first page.