2.8以下版本安装过的模块统称为老模块,2.8以上版本在模块管理即可看到是否是独立模块
一、设置方法
在模块管理,选择一个独立模块,点 “站点管理”;
然后在选择你要设置的站点,并选择一个URL规则;
选设置完成之后,更新缓存,然后再到此模块菜单下,内容维护菜单,选择更新URL。
二、规则说明
1、模块首页(如果模块绑定过域名,那么次规则将会失效)
你可以写任意名称,例如新闻模块,你可以在规则里面填写:
xinwen.html
那么,你就可以通过xinwen.html来访问新闻模块的首页了
解析规则(config/rewirte.php):
"xinwen.html" => "index.php?s=news",
前面部分是新闻规则,后面部分是新闻的动态访问页面
2、模块栏目页
栏目访问页面举例:
/news/list-999.html 默认地址
/news/list-999-2.html 分页地址
URL规则:
news/list-{id}.html 默认地址 news/list-{id}-{page}.html 分页地址
对应的解析规则(config/rewirte.php):
"news/list-([0-9]+).html" => "index.php?s=news&c=category&id=$1", "news/list-([0-9]+)-([0-9+]).html" => "index.php?s=news&c=category&id=$1&page=$2",
3、模块内容页
内容访问页面举例:
/news/show-999.html 默认地址
/news/show-999-2.html 分页地址
URL规则:
news/show-{id}.html 默认地址 news/show-{id}-{page}.html 分页地址
对应的解析规则(config/rewirte.php):
"news/show-([0-9]+).html" => "index.php?s=news&c=show&id=$1", "news/show-([0-9]+)-([0-9+]).html" => "index.php?s=news&c=show&id=$1&page=$2",
4、模块扩展页
内容扩展访问页面举例:
/news/extend-999.html 默认地址
/news/extend-999-2.html 分页地址
URL规则:
news/extend-{id}.html 默认地址 news/extend-{id}-{page}.html 分页地址
对应的解析规则(config/rewirte.php):
"news/extend-([0-9]+).html" => "index.php?s=news&c=extend&id=$1", "news/extend-([0-9]+)-([0-9+]).html" => "index.php?s=news&c=extend&id=$1&page=$2",
5、模块Tag页面
访问页面举例:
/news/tag-my.html 默认地址
/news/tag-my-2.html 分页地址
my表示tag的英文字母标识
URL规则:
news/tag-{tag}.html 默认地址 news/tag-{tag}-{page}.html 分页地址
对应的解析规则(config/rewirte.php):
"news/tag-(.+).html" => "index.php?s=news&c=tag&name=$1", "news/tag-(.+)-([0-9+]).html" => "index.php?s=news&c=tag&name=$1&page=$2",
6、模块内容搜索页面
直接访问搜索页面 /news/search.html
那么规则写成:
/news/search.html
对应的解析规则(config/rewirte.php):
"news/search.html" => "index.php?s=news&c=search",
附带参数的搜索页面 /news/search-catid-2-city-beijin.html
那么规则写成:
/news/search-{param}.html
对应的解析规则(config/rewirte.php):
"news/search-(.+).html" => "index.php?s=news&c=search&rewirte=$1",