1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- return [
-
- 'pathinfo_depr' => '/',
-
- 'url_html_suffix' => 'html',
-
- 'url_common_param' => true,
-
- 'url_lazy_route' => false,
-
- 'url_route_must' => true,
-
- 'route_rule_merge' => false,
-
- 'route_complete_match' => true,
-
- 'route_annotation' => false,
-
- 'route_check_cache' => false,
-
- 'route_cache_option' => [],
-
- 'route_check_cache_key' => '',
-
- 'controller_layer' => 'controller',
-
- 'empty_controller' => 'Error',
-
- 'controller_suffix' => false,
-
- 'default_route_pattern' => '[\w\.]+',
-
- 'url_convert' => true,
-
- 'request_cache' => false,
-
- 'request_cache_expire' => null,
-
- 'request_cache_except' => [],
-
- 'default_controller' => 'Index',
-
- 'default_action' => 'index',
-
- 'action_suffix' => '',
-
- 'default_jsonp_handler' => 'jsonpReturn',
-
- 'var_jsonp_handler' => 'callback',
- ];
|