在Laravel5中有没有办法可以定义处理动态路由的路由而不会与当前的静态路由冲突?类似下面的东西:
// Dynamic routes
Route::get('{permalink}', function($permalink) {
//look for matching username on the table (bind perhaps?)
});
// Static routes
Route::get('home', 'HomeController@index');
Route::get('products', 'ProductController@index');
任何想法,伙计们?感谢。
答案 0 :(得分:0)
静态和动态路由不应相互冲突。只需将静态路由设置为高于动态路由。