Как установить lang по умолчанию, если lang не существует - PullRequest
0 голосов
/ 11 сентября 2018

Как установить lang по умолчанию, если lang не существует.Он должен перенаправить на lang по умолчанию. Я использую mcamara/laravel-localization package

Я хочу установить en = lang по умолчанию, и если я наберу url, не существует, я хочу перенаправить на en

example 

1 www.test.com/en/new

2 www.test.com/cn/new <- this url empty it should redirect into url 1 

1 Ответ

0 голосов
/ 11 сентября 2018

Laravel поставляется с en по умолчанию, и вы можете указать запасной вариант в config/app.php

/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/

'locale' => 'en',

/*
|--------------------------------------------------------------------------
| Application Fallback Locale
|--------------------------------------------------------------------------
|
| The fallback locale determines the locale to use when the current one
| is not available. You may change the value to correspond to any of
| the language folders that are provided through your application.
|
*/

'fallback_locale' => 'en',
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...