我正在尝试创建一个包含多种语言的网站(使用Laravel 5.5)。因此,我遵循教程https://mydnic.be/post/how-to-build-an-efficient-and-seo-friendly-multilingual-architecture-for-your-laravel-application,但不知何故,我遇到了语言中间件部分的麻烦:
// BeforeLanguage.php
namespace App\Http\Middleware;
use Closure;
class BeforeLanguage
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// Check if the first segment matches a language code
if (!array_key_exists($request->segment(1), config('translatable.locales')) ) {
// Store segments in array
$segments = $request->segments();
// Set the default language code as the first segment
$segments = array_prepend($segments, config('app.fallback_locale'));
// Redirect to the correct url
return redirect()->to(implode('/', $segments));
}
return $next($request);
}
}
如果我打开带有该语言标识符的URL,e。 G。 http://ps.dev/de/app/login
但是我得到了#34;抱歉,找不到您正在寻找的页面。"如果我尝试打开URI中没有语言标识符的页面,e。 G。 http://ps.dev/app/login
。
但是在这里我希望中间件将语言段添加到URI中。知道什么可能出错吗?
下面我想提供一些其他信息。
web.php
Route::prefix('app')->group(function () {
// Authentication routes
Route::get('login', 'SessionsController@create')->name('login');
// ...
});
Kernel.php
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\BeforeLanguage::class,
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\Session\Middleware\AuthenticateSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
'api' => [
'throttle:60,1',
'bindings',
],
];
根据Laravel文档页面,分配给中间件组web的中间件默认执行web.php中定义的任何路由。 (开箱即用,网络中间件组由RouteServiceProvider自动应用于您的routes / web.php文件。)
RouteServiceProvider.php
protected function mapWebRoutes()
{
$locale = Request::segment(1);
Route::prefix($locale)
->middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
}
答案 0 :(得分:3)
我认为你选择了一种像“重新发明轮子”这样的方法。 ;)
虽然这是你的决定和尊重,但作为一个建议尝试this很好的Laradvel本地化包:D
答案 1 :(得分:0)
它发送到404的原因是该网址不存在。在路径文件中,您尚未创建语言路径。所以最终,如果你的 中间件工作,它将发送到不存在的路径路径,这将是404。
添加语言标识符: -
Route::get('{lang}/login', 'SessionsController@create')->name('login');
通过cmd
中的以下artisan命令检查路线php artisan route:list