Laravel本地化url helper

时间:2016-07-18 13:13:47

标签: php laravel localization routes helper

我需要本地化我的网站。我正在使用这个包:https://github.com/mcamara/laravel-localization 我的路线组是:

Route::group(['prefix' => LaravelLocalization::setLocale()], function()
{
Route::get('/garage', ['as' => 'garage', 'uses' => 'GarageController@garage']);
//OTHER ROUTES
});

我想本地化这条路线的链接。如果我正在使用

href="{{ route('garage') }}

一切正常,链接看起来像“www.example.com/locale/garage”。 但如果我正在使用

href="{{ url('/garage') }}

我的本​​地化不起作用,链接看起来像“www.example.com/garage”。 有没有办法本地化使用URL帮助程序创建的链接?

1 个答案:

答案 0 :(得分:0)

LaravelLocalization包中包含一个中间件对象,用于将所有非本地化路由重定向到相应的“本地化”。

因此,如果用户导航到http://www.example.com/test并且系统已激活此中间件并且'en'作为此用户的当前区域设置,则会自动将其重定向到http://www.example.com/en/test

要激活此功能,请转到app/Http/Kernel.php并在开头的protected $routeMiddleware = []中添加这些类,然后在路径文件中添加以下内容:

Route::group([
'prefix' => LaravelLocalization::setLocale(),
'middleware' => [ 'localeSessionRedirect', 'localizationRedirect', 'localeViewPath' ]
], function()
{
Route::get('/garage', ['as' => 'garage', 'uses' => 'GarageController@garage']);
//OTHER ROUTES
});

你的问题将得到解决。