login-redirect-page

Syntax

login-redirect-page = destination

Description

Page to which users are automatically redirected after completing a successful authentication. The configured redirect destination can be either:
  • A server-relative Uniform Resource Locator (URL), or
  • An absolute URL, or
  • A macro which allows dynamic substitution of information from WebSEAL.

The supported macros include:

%AUTHNLEVEL%
Level at which the session is currently authenticated.
%HOSTNAME%
Fully qualified host name.
%PROTOCOL%
The client connection protocol used. Can be HTTP or HTTPS.
%URL%
The original URL requested by the client.
%USERNAME%
The name of the logged in user.
%HTTPHDR{name}%
The HTTP header that corresponds to the specified name. For example: %HTTPHDR{Host}%
%CREDATTR{name}%
The credential attribute with the specified name. For example: %CREDATTR{tagvalue_session_index}%
Note: You cannot use this configuration entry if the enable-js-redirect entry (also in the [acnt-mgt] stanza) is set to yes. These redirects are not compatible with one another.

Options

destination
Uniform Resource Locator (URL) to which users are automatically redirected after login, or a macro for dynamic substitution of information from WebSEAL.

Usage

This stanza entry is optional.

Default value

None.

Example

Example of a server relative URL:

login-redirect-page = /jct/page.html

Example of an absolute URL:

login-redirect-page = http://www.ibm.com/
Example that uses a macro:
login-redirect-page = /jct/intro-page.html?level=%AUTHNLEVEL%&url=%URL%