PHP5.3以上版本(注意:PHP5.3dev版本和PHP6均不支持)
入口文件
define('APP_DEBUG',True); 开启调试模式
define('APP_PATH','./Application/'); 设置应用目录
THINK_PATH 核心框架目录
RUNTIME_PATH 应用运行时目录(可写)
多模块入口文件设置
新建admin.php
<?php
define('BIND_MODULE','Admin');
define('APP_PATH','./Application/');
require './ThinkPHP/ThinkPHP.php';
?>
应用\Common\Conf\config.php 配置文件
'MODULE_DENY_LIST' => array('home','Runtime','Api'), 禁止模块
'MODULE_ALLOW_LIST' => array('Home','Admin','User'), 仅允许模块
'ACTION_SUFFIX' => 'Action', 操作方法后缀
'URL_ROUTER_ON' => true, 开启路由
'URL_ROUTE_RULES'=>array( 路由规则 左侧规则 右侧是值
'index/index' => 'home/index/index',
'ec/:id' => 'home/index/ec?id:1',
),