'url_pathinfo_depr'=>'-',//修改url的分隔符
'tmpl_l_delim'=>'<{', //修改左定界符
'tmpl_r_delim'=>'}>', //修改右定界符
'db_type'=>'mysql', //设置数据库类型
'db_host'=>'localhost',//设置主机
'db_name'=>'thinkphp',//设置数据库名
'db_user'=>'root', //设置用户名
'db_pwd'=>'', //设置密码
'db_port'=>'3306', //设置端口号
'db_prefix'=>'tp_', //设置表前缀
'db_dsn'=>'mysql://root:@localhost:3306/thinkphp',//使用dsn方式配置数据库信息
'show_page_trace'=>true,//开启页面trace
'tmpl_template_suffix'=>'.html',//更改模板文件后缀名
'tmpl_file_depr'=>'_',//修改模板文件目录层次
'tmpl_detect_theme'=>true,//自动侦测模板主题
'theme_list'=>'your,my',//支持的模板主题列表
'tmpl_parse_string'=>array( //添加自己的模板变量规则
'__css__'=>__root__.'/public/css',
'__js__'=>__root__.'/public/js',
),
'layout_on'=>true,//开启模板渲染
'url_case_insensitive'=>true,//url不区分大小写
'url_html_suffix'=>'html|shtml|xml',//限制伪静态的后缀
'app_group_list' => 'home,admin', //项目分组设定
'default_group' => 'home', //默认分组