superbig / craft3-logoutredirect
Configure where to send users after they logout.
Installs: 715
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 2
Open Issues: 1
Type:craft-plugin
Requires
- craftcms/cms: ^3.0.0-beta.23
This package is auto-updated.
Last update: 2024-10-30 01:31:49 UTC
README
Configure where to send users after they logout.
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require superbig/craft3-logoutredirect
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Logout Redirect.
-
Create a configuration file named
logout-redirect.php
in the Craft config directory, usuallyconfig
.
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