thinkphp绑定模块

入口文件中不加绑定模块之前的访问地址是:

http://tp.com/index.php/index/Index/getConf

在入口文件public/indexphp加入以下配置:

//绑定模块
define('BIND_MODULE','index');

则访问地址可以简写成:

http://tp.com/index.php/Index/getConf

(后台同理)

你可能感兴趣的:(thinkphp)