123456789101112131415 |
- <?php
- // 设限制URL兼容模式
- \think\Url::root('index.php?s=');
- return [
- '__pattern__' => [
- 'name' => '\w+',
- ],
- '[hello]' => [
- ':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
- ':name' => ['index/hello', ['method' => 'post']],
- ],
- ];
|