How to set up WebAccess URL redirection with IIS

  • 7013124
  • 27-Aug-2013
  • 17-Jul-2014

Environment

Microsoft Windows Server
Novell GroupWise 2012
Novell GroupWise 8

Situation

How to configure IIS redirection with GroupWise WebAccess (GWWA)
Navigate to www.mydomain.com and be forwarded to www.mydomain.com/gw/webacc

Resolution

Please follow the steps below to configure the default IIS htm file to redirect:

  1. Edit C:\inetpub\wwwroot\iisstart.htm
  2. Replace with the following:
    <html>
    <head>
    <meta http-equiv="refresh" content="0;url=https://serverAddress/gw/webacc" />
    <title>Redirecting to Secure GroupWise Webaccess</title>
    </head>
    <body>
    This page is used to redirect to the Secure GroupWise Webaccess server. If
    your browser does not automatically redirect you in a few seconds, click <a
    href="https://serverAddress/gw/webacc">here</a> to go to the
    secure page.
    </body>
    </html>
  3. Replace both instances of https://serverAddress/gw/webacc with the URL WebAccess.
    Note: If SSL has not yet been configured with IIS, then use http:// instead of https:// - To secure IIS with SSL, see the Additional Information section below.
  4. Save and Close the file.

If the above does not work, IIS redirection may not be installed

  1. Launch the Server Manager and select Manage | Add Roles and Features and click next until getting to Server Roles
  2. Find and select Web Server (IIS) and click next until getting to the IIS customization
  3. If the HTTP Redirection is not selected, then check it and finish the install

Redirection should now function properly


Alternatively, there are steps provided in Microsoft Windows Server documentation to configure redirection with IIS: