Files
backend-code/source/application/route.php
2023-08-21 14:46:51 +08:00

16 lines
300 B
PHP

<?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']],
],
];