Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XS✔ ◾ Improved URL and updated links "add-redirect-from-http-to-https-for-owa" #8462

Merged
merged 3 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ uri: rules-to-better-exchange-server
index:
- enable-the-search
- customise-outlook-web-access-owa
- configure-redirection-to-https-owa
- add-redirect-from-http-to-https-for-owa
---
80 changes: 80 additions & 0 deletions rules/add-redirect-from-http-to-https-for-owa/rule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
type: rule
archivedreason:
title: Do you add a redirect from http to https for OWA?
guid: df2d7b63-316f-4989-912e-09543657f80c
uri: add-redirect-from-http-to-https-for-owa
created: 2016-05-02T06:48:16.0000000Z
authors:
- title: Stanley Sidik
url: https://ssw.com.au/people/stanley-sidik
related: []
redirects:
- do-you-add-a-redirect-from-http-to-https-for-owa
- configure-redirection-to-https-owa

---

To simplify Outlook Web App (OWA) access for your users, you want to configure the Outlook Web App page to automatically redirect users to https. The HTTP redirect procedure in IIS Manager simplifies OWA URL and forces to SSL connection from **mail.domain.com** to **mail.domain.com/owa** .

<!--endintro-->

### Step 1: Use IIS Manager to simplify OWA URL and force redirection to SSL

1. Start IIS Manager
2. Expand the local computer, expand **Sites**, and then click **Default website**
3. At the bottom of the Default website Home pane, click **Features View** if this option isn't already selected
4. In the **IIS** section, double-click **HTTP Redirect**
5. Select the **Redirect requests to this destination** check box
6. Type the absolute path of the /owa virtual directory. For example, type **mail&#46;domain&#46;com/owa**
7. Under **Redirect Behavior** , select the **Only redirect requests to content in this directory (not subdirectories)** check box
8. In the **Status code** list, click **Found (302)**
9. In the Actions pane, click **Apply**
![](OWARedirect.jpg)

10. Click **Default website**
11. In the Default website Home pane, double-click **SSL Settings**
12. In **SSL Settings**, clear **Require SSL**
![](OWARedirect2.jpg)

### Step 2: Remove redirection from virtual directories

1. Open a Command Prompt window.
2. Navigate to:

``` bash
<window directory="">\System32\Inetsrv.
```

3. Run the following commands:

``` bash
appcmd set config "Default Web Site/autodiscover" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/ecp" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/ews" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/owa" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/oab" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/powershell" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/rpc" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/rpcwithcert" /section:httpredirect /enabled:false -commit:apphost
appcmd set config "Default Web Site/Microsoft-Server-ActiveSync" /section:httpredirect /enabled:false -commit:apphost
```

4. Finish by running the command:

``` bash
iisreset/noforce.
```

### Step 3: Test that HTTP to HTTPS redirect is working

1. Open Internet Explorer and type in **mail&#46;domain&#46;com**
2. Done - You are then redirected to **mail&#46;domain&#46;com/owa**

::: bad
![Figure: Bad example - No redirect in place for OWA](iisnoredirect.jpg)
:::

::: good
![Figure: Good example - Redirect from HTTP to https for OWA](iisredirect.jpg)
:::
78 changes: 0 additions & 78 deletions rules/do-you-add-a-redirect-from-http-to-https-for-owa/rule.md

This file was deleted.

Loading