织梦DeDeCMS文章列表分页链接怎样改成绝对地址

2026-02-13 05:41:12

1、找到include文件夹下的arc.listview.class.php并用专业代码编辑器打开

2、使用编辑器的查找功能寻找到以下代码

$tnamerule = preg_replace("/^(.*)\//", '', $tnamerule);

3、直接在下面添加以下内容后即可实现织梦DeDeCMS目录分页绝对路径!

global $cfg_basehost;

$cfg_basehost = preg_replace('#/$#','',$cfg_basehost);

$tnamerule = $cfg_basehost.MfTypedir($this->Fields['typedir']).'/'.$tnamerule;

猜你喜欢