craftsnippets/locale-redirect

Locale redirect

1.0.2 2020-02-10 13:11 UTC

This package is not auto-updated.

Last update: 2024-04-16 12:38:09 UTC


README

PLUGIN IS STILL IN BETA AND SHOULD NOT BE USED IN PRODUCTION.

Installation

composer require craftsnippets/locale-redirect

Usage

Put this into config/locale-redirect.php:

<?php
return [
	'redirectMapping' => [
	    'en' => 'site_en_handle',
	    'ru' => 'site_ru_handle',
	],
];

First site will be used as default one if no match can be made.

Brought to you by Piotr Pogorzelski