liquidbcn / craftcms-language-redirect
Simple language redirector based on browser preferences
Installs: 578
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 4
Type:craft-plugin
Requires
This package is not auto-updated.
Last update: 2025-03-27 17:57:35 UTC
README
This plugin allows you redirect your users to the desired url based on user browser preferences
Requirements
This plugin requires Craft CMS 4.0.0 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 liquidbcn/craftcms-language-redirect
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for this plugin.
Configuring the plugin
You can configure the plugin creating a file under your config folder named language-redirect.php with the desired settings.
defaultLanguage: default locale if none is detected
urls: array containing the mapping between the locale and the relative url of your language base path
Example
<?php
return [
'defaultLanguage' => 'en-GB',
'urls' => [
'ca' => '/ca/',
'ca-ES' => '/ca/',
'es' => '/es/',
'es-ES' => '/es/',
'en-GB' => '/en/',
'en-US' => '/en/',
'en' => '/en/'
]
];
Brought to you by Liquid Studio