【发布时间】:2019-01-26 06:14:04
【问题描述】:
我是 laravel 框架的新手,现在我正在使用 Laravel 开发完全开发的网站。我已将博客网址形式 {id} 更改为 {id}/{name},例如 www.example.com/news/203 更改为 www.example.com/news/203/title。它工作正常。但如果旧 url 进入从缓存或其他东西打开的当前 url,我需要重定向。
Route::get('{id}/{name}', 'EventController@show')
->name('events-detail')
->where([
"id" => "[0-9]+"
]);
【问题讨论】: