route.php 300 B

123456789101112131415
  1. <?php
  2. // 设限制URL兼容模式
  3. \think\Url::root('index.php?s=');
  4. return [
  5. '__pattern__' => [
  6. 'name' => '\w+',
  7. ],
  8. '[hello]' => [
  9. ':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
  10. ':name' => ['index/hello', ['method' => 'post']],
  11. ],
  12. ];