route.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 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. // +----------------------------------------------------------------------
  12. // | 应用设置
  13. // +----------------------------------------------------------------------
  14. return [
  15. // pathinfo分隔符
  16. 'pathinfo_depr' => '/',
  17. // URL伪静态后缀
  18. 'url_html_suffix' => 'html',
  19. // URL普通方式参数 用于自动生成
  20. 'url_common_param' => true,
  21. // 是否开启路由延迟解析
  22. 'url_lazy_route' => false,
  23. // 是否强制使用路由
  24. 'url_route_must' => true,
  25. // 合并路由规则
  26. 'route_rule_merge' => false,
  27. // 路由是否完全匹配
  28. 'route_complete_match' => true,
  29. // 使用注解路由
  30. 'route_annotation' => false,
  31. // 是否开启路由缓存
  32. 'route_check_cache' => false,
  33. // 路由缓存连接参数
  34. 'route_cache_option' => [],
  35. // 路由缓存Key
  36. 'route_check_cache_key' => '',
  37. // 访问控制器层名称
  38. 'controller_layer' => 'controller',
  39. // 空控制器名
  40. 'empty_controller' => 'Error',
  41. // 是否使用控制器后缀
  42. 'controller_suffix' => false,
  43. // 默认的路由变量规则
  44. 'default_route_pattern' => '[\w\.]+',
  45. // 是否自动转换URL中的控制器和操作名
  46. 'url_convert' => true,
  47. // 是否开启请求缓存 true自动缓存 支持设置请求缓存规则
  48. 'request_cache' => false,
  49. // 请求缓存有效期
  50. 'request_cache_expire' => null,
  51. // 全局请求缓存排除规则
  52. 'request_cache_except' => [],
  53. // 默认控制器名
  54. 'default_controller' => 'Index',
  55. // 默认操作名
  56. 'default_action' => 'index',
  57. // 操作方法后缀
  58. 'action_suffix' => '',
  59. // 默认JSONP格式返回的处理方法
  60. 'default_jsonp_handler' => 'jsonpReturn',
  61. // 默认JSONP处理方法
  62. 'var_jsonp_handler' => 'callback',
  63. ];