Laravel 8 重定向网络路由
Posted
技术标签:
【中文标题】Laravel 8 重定向网络路由【英文标题】:Laravel 8 redirect web routes 【发布时间】:2021-09-30 15:39:16 【问题描述】:我的 Laravel 8 路由似乎有错误。
我的网络路由文件:
Route::get('/locale', function ($locale)
if(!in_array($locale, ['en','nl','ru','uk','fr','de','es','pt','it']))
abort(400);
App::setLocale($locale);
return view('welcome');
);
Route::get('/', function ()
return redirect('/en');
);
Route::middleware(['auth:sanctum'])->get('/dashboard/locale', function ($locale)
if(!in_array($locale, ['en','nl','ru','uk','fr','de','es','pt','it']))
abort(400);
App::setLocale($locale);
return view('dashboard');
)->name('dashboard');
Route::middleware(['auth:sanctum'])->get('/dashboard', function ()
return redirect('/dashboard/en');
);
当去/
时,它被重定向到/en
。
但是当转到/dashboard
时,它不会重定向到/dashboard/en
,而是会出现错误:
Symfony\Component\HttpKernel\Exception\HttpException
http://127.0.0.1:8000/dashboard
可以看出,给出的信息并不多。
有人知道该怎么做吗?
【问题讨论】:
顺便说一句,您可以在该路由参数上使用正则表达式模式,这样您就不必在每个需要限制语言环境值的路由中检查它 它可能只包含这两条路线。但确实如此。我会记住它的未来:) 【参考方案1】:找到了:
Laravel 从上到下处理路由。这意味着它在到达 /dashboard
之前到达 /locale
。在这种情况下,dashboard
被视为locale
,并且采取了错误的路线。
【讨论】:
以上是关于Laravel 8 重定向网络路由的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Vue 3 中重定向另一个路由器? (在 Laravel 8 中使用 next.router 和 vue 3)