网站地图    收藏   

主页 > 后端 > discuz >

discuz论坛帖子内容动态链接批量替换成静态链接

来源:自学PHP网    时间:2014-12-03 20:51 作者: 阅读:

[导读] discuz论坛帖子内容动态链接批量替换成静态链接 discuz帖子内容批量替换forum_viewthread php,1054行$_G[ 39;forum_firstpid 39;] = i...

discuz论坛帖子内容动态链接批量替换成静态链接 discuz帖子

discuz论坛帖子内容动态链接批量替换成静态链接 discuz帖子内容批量替换

forum_viewthread.php,1054行$_G['forum_firstpid'] = intval($_G['forum_firstpid']);前添加:

  1. $post['message']=preg_replace("/category\.php\?id=(\d+)/s","category-\\1-b0.html",$post['message']);        
  2. $post['message']=preg_replace("/\.php\?id=(\d+)/s","-\\1.html",$post['message']);        
  3. $post['message']=str_replace("abc.php","abc.html",$post['message']);        
  4. $post['message']=str_replace("index.php","",$post['message']);        
  5. $post['message']=preg_replace("/\.html&cid=(\d+)/s","-\\1.html",$post['message']);    
  6. $post['message']=preg_replace("/article_cat-(\d+)-(\d+)\.html/s","abc-\\1-\\2.html",$post 
  7. ['message']);    

注意跟自己的静态页面正则匹配,可以参照上面的,添加或删减.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论