superbig/craft3-logoutredirect

Configure where to send users after they logout.

2.0.1 2019-01-20 17:06 UTC

This package is auto-updated.

Last update: 2024-03-30 00:23:33 UTC


README

Configure where to send users after they logout.

Icon

Requirements

This plugin requires Craft CMS 3.0.0-beta.23 or later.

Installation

To install the plugin, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require superbig/craft3-logoutredirect
    
  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Logout Redirect.

  4. Create a configuration file named logout-redirect.php in the Craft config directory, usually config.

Configuring Logout Redirect

<?php
return [
    // Enable the redirect check
    'enabled' => true,
    
    // To redirect all users after logout - this will override the two other config options
    'redirectUrl' => '/goodbye',
    
    // To redirect CP users after logout
    'redirectCpUrl'   => '/cp-goodbye',
    
    // To redirect site users after logout
    'redirectSiteUrl' => '/goodbye',
];

Brought to you by Superbig