这是我的网页浏览路线,
Route::get('{id}', 'User\HomeController@single');
我希望
这样的网址example.org/this-is-my-page
但是我收到404错误。我也有类似的路线,
Route::get('/admin', 'Sitezontroller@home')->name('admin');
Route::get('/products', 'SiteController@products')->name('products');
我不想让该URL与页面URL冲突。请问这里有人可以帮助我吗?