企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
默认访问为index控制器。 需要需要访问index下的item方法则地址为 `http://xxx.xx/index/item` 使用以下方法可以自定义为 `http://xxx.xx/item` 在 \app\common.php 找到 ``` } else { //未安装跳转安装 ``` 上面增加 ``` /** * 修改index一级入口 */ $url_index = [ 'item', //商品详情 'act', //最新活动 ]; if (is_int(array_search(cp::url()[1], $url_index)) == true) { if (file_exists(APP . 'index/view/' . cp::url()[1] . '.php')) { //检查方法模板是否存在 require APP . 'index/class.php'; require APP . 'index/common.php'; require APP . 'index/controllers/' . cp::url()[1] . '.php'; require APP . 'index/view/' . cp::url()[1] . '.php'; } else { //不存在则直接输出方法 require APP . 'index/class.php'; require APP . 'index/common.php'; require APP . 'index/controllers/' . cp::url()[1] . '.php'; } exit; } ```