建议官方把模块放在云市场,当我们需要那个模块就下载那个模块,因为有的人不一定需要cms模块的不一定需要圈子或者分类模块,所以模块还是放在云市场比较好,在有默认的cms没办法改名。
默认的cms 可以能过静态规则来改名。routemy.php里面来改。route.php是默认规则。
官方默认没有提供 routemy.php文件,复制一下route.php
把里面内容改成。
<?php use think\Route; Route::group(['name'=>'cms','ext'=>'html'], [ 'show-<id>$' =>['cms/content/show',['method'=>'get'],['id' => '\d+']], 'list-<fid>'=>['cms/content/index',['method'=>'get'],['fid' => '\d+']], 'mid-<mid>$'=>['cms/content/index',['method'=>'get'],['mid' => '\d+']], 'show' => 'cms/content/show', 'list' => 'cms/content/index', 'index' => 'cms/index/index', ]);
把第一个CMS改成你需要的字符就可以了。
晚点会把CMS 与 商城也放云市场
默认中的会被官发发布的新文件替换。