gpt4 book ai didi

Laravel使用regexp的可选前缀路由

转载 作者:行者123 更新时间:2023-12-04 16:42:23 25 4
gpt4 key购买 nike

有没有一种方法可以创建带有前缀的路由,所以我可以拥有这样的路由

/articles.html -> goes to listing  Controller in default language
/en/articles.html -> goes to the same controller
/fr/articles.html -> goes to the same controller

我当前的问题是通过执行以下操作:
Route::group(['prefix=>'/{$lang?}/',function(){});

这样的路由: /authors/author-100.html将匹配前缀'authors',并且肯定没有称为“authors”的语言。

我用laravel 5.5

最佳答案

似乎没有任何好的方法来使用可选前缀,因为带有“可选”正则表达式标记的组前缀方法不起作用。但是,可以使用所有路由声明一个Closure,并使用前缀添加一次,而不使用前缀添加一次:

$optionalLanguageRoutes = function() {
// add routes here
}

// Add routes with lang-prefix
Route::group(
['prefix' => '/{lang}/', 'where' => ['lang' => 'fr|en']],
$optionalLanguageRoutes
);

// Add routes without prefix
$optionalLanguageRoutes();

关于Laravel使用regexp的可选前缀路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46032537/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com