You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
362 B
17 lines
362 B
<?php
|
|
defined('BASE_PATH') OR exit('No direct script access allowed');
|
|
|
|
return array (
|
|
'DEBUG' => false,
|
|
|
|
//route config
|
|
'REWRITE_ON' => 'false',
|
|
'REWRITE_RULE' =>array(
|
|
//'<app>/<c>/<a>'=>'<app>/<c>/<a>',
|
|
),
|
|
|
|
//db config
|
|
'DB'=>array(
|
|
'default' => file_exists(ROOT_PATH. 'data/config.php') ? require ROOT_PATH. 'data/config.php':array(),
|
|
),
|
|
);
|