When the Logout Redirection is set to Redirect all users after logout,

Users see the Logged Out page after logging out:


This Page can be customized by editing the Logged Out Page Template under Page Templates in the app's configuration page.

Redirect SSO users to another page then non-SSO-users

This example redirects SSO-users to https://www.bing.com, non-SSO-users to https://www.google.com. It uses the $wasSso Velocity-variable wich is true if the user was logged in with SSO.

<html>
<head>
    <title>You are logged out now</title>
    $webResourceManager.requireResource("$pluginproperties.pluginkey:resources")
    <meta name="decorator" content="atl.general">
</head>
<body class="aui-layout aui-theme-default page-type-message" >
<section id="content" role="main">
    <div class="aui-page-panel"><div class="aui-page-panel-inner">
        <section class="aui-page-panel-content">
            <div class="form-body">
                <div class="aui-message info"><span class="aui-icon icon-info"></span><p class="title">
                    #if($wasSso)
                        <p>This was a SSO Session</p>
                        <script>window.location.href = 'https://www.bing.com'</script>
                    #else
                        <p>This was no SSO Session</p>
                        <script>window.location.href = 'https://www.google.com'</script>
                    #end
                </div>
            </div>
        </section>
    </div>
    </div>
</section>
</body>
</html>
CODE