分类分类
更新时间:2026-04-09 16:30:31作者:fang
基于代码X3,其它版本源码,请自行验证。
Discuz后台的伪静态配置不包含门户频道页的伪静态配置。应该是考虑到频道页的URL地址变化太多的原因。下面,我们就来开发源码,加上这个功能。
第一步:加上语言包中的记录:
根目录下:sourcelanguagelang_admincp.php ,找到setting_seo_rewritestatus_portal_article 这一行,大概在1500行左右,搜索一下吧。
在这句下面加上一句:'setting_seo_rewritestatus_portal_list' => '门户频道页',
第二步:在后台加上设置项
根目录下:sourcefunctionfunction_admincp.php ,找到rewritedata函数,在if语句的,两个大括号中,加上下面两段程序
上面一段加上
if (in_array('portal_list', $_G['setting']['rewritestatus'])) {
$data['search']['portal_list'] = "/" . $_G['domain']['pregxprw']['portal'] . "?mod=list&(amp;)?catid=(d+)(&page=(d+))?"([^>]*)>/e";
$data['replace']['portal_list'] = "rewriteoutput('portal_list', 0, '1', '3', '5', '6')";
}
下面一段加上
$data['rulesearch']['portal_list'] = 'list-{catid}-{page}.html';
$data['rulereplace']['portal_list'] = 'portal.php?mod=list&catid={catid}&page={page}';
$data['rulevars']['portal_list']['{catid}'] = '([0-9]+)';
$data['rulevars']['portal_list']['{page}'] = '([0-9]+)';
第三步:兼容栏目页URL地址设置
找到文件:
根目录sourcefunctionfunction_portal.php 下的函数getportalcategoryurl
重新写成下面的代码:
function getportalcategoryurl($catid) {
if (empty($catid))
return '';
loadcache('portalcategory');
$portalcategory = getglobal('cache/portalcategory');
if ($portalcategory[$catid]) {
$url = str_replace('&', '&', $portalcategory[$catid]['caturl']);
$url = str_replace('&', '&', $url);
$url = str_replace('http://'.$_SERVER['HTTP_HOST'].'/', '', $url);
return $url;
} else {
return '';
}
}
第四步:设置前台页面URL地址切换
根目录00phpsourcefunctionfunction_core.php 这个文件中找到:函数rewriteoutput
在一串的if ... else if中加上一段
elseif ($type == 'portal_list') {
list(,,, $id, $page, $extra) = func_get_args();
$r = array(
'{catid}' => $id,
'{page}' => $page ? $page : 1,
);
}
至此,大功告成。
相关
傲视神魔传手游策略游戏13.55 Mv1.0.02026-04-09
下载三国志王道天下策略游戏2.18Gv0.9.8.12026-04-09
下载风云三国手机版策略游戏213.99 M2026-04-09
下载星之海手机版角色扮演2.78Gv1.1.598772026-04-09
下载迪士尼梦幻王国经营养成79.34 Mv11.5.0h2026-04-09
下载TapAim动作射击97.92 Mv2.0.12026-04-09
下载肖邦大冒险九游版策略游戏133.64 Mv1.02026-04-09
下载放松时光与你共享Lo-Fi故事休闲益智951.66 Mv1.4.62026-04-09
下载羽毛球对决体育竞技175.66 Mv4.12026-04-09
下载假面骑士泽兹变身模拟器休闲益智51.91 Mv1.00.302026-04-09
下载餐车厨师烹饪游戏苹果版模拟游戏327.2 Mv8.682026-04-09
下载最终幻想7永恒危机ios版角色游戏1.5Gv3.6.02026-04-09
下载










