thinkphp6 资源路由的学习

1、config/route.php默认配置下,使用下方代码来限制路由不会生效;将 'url_route_must' => true 开启强制使用路由,才可生效

Route::resource('blog', 'Blog')
    ->except(['index', 'delete']);

2、 更改某个资源路由标识的对应操作

Route::rest('create',['GET', '/add','add']);
Route::resource('blog', 'Blog');

http://serverName/blog/create 变为 http://serverName/blog/add,且控制器中的create方法也变为add;

http://serverName/blog/create失效

注:Route::rest('create',['GET', '/add','add']); 会对所有资源路由起作用,所以必须要放在需要修改的资源路由注册之前,放在其他资源路由之后

你可能感兴趣的:(thinkphp6 资源路由的学习)