route.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. return [
  12. //别名配置,别名只能是映射到控制器且访问时必须加上请求的方法
  13. // '__alias__' => [
  14. // 'demo' => 'admin/Test',
  15. // ],
  16. '__pattern__' => [
  17. 'name' => '\w+',
  18. ],
  19. '[hello]' => [
  20. ':id' => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
  21. ':name' => ['index/hello', ['method' => 'post']],
  22. ],
  23. // 域名绑定到模块
  24. // '__domain__' => [
  25. // 'admin' => 'admin',
  26. // 'api' => 'api',
  27. // ],
  28. ];