TOP-framework/application/route.php

16 lines
268 B
PHP

<?php
// 自定义路由示例
return [
'auth' => [
null,
'home/auth/login'
],
'intention-detail' => [
'[id]',
'home/intention/detail'
],
'permission' => [
'[:type]',
'home/permission/index'
],
];