希望大家不要白嫖
关注一下我的公众号
优化DZX3.4SEO
| 第一步,开启默认的seo设置
全局>seo设置,网站开启URL伪静态,开启之前一定要配置好伪静态规则,规则可以自己百度
优化DZX3.4SEO
搜索引擎对于伪静态的网址相比动态网址要好得多好,很多人不在乎这一点。
| 第二步,补全SEO设置
全局>seo设置,这里面门户、论坛、家园、群组都建议补全信息,设置完成后查看一下帖子列表和其他页面代码里面SEO信息是否完备。
优化DZX3.4SEO
| 第三步,修改搜索引擎抓取不到描述的问题
门户首页描述description百度不抓取keywords修复方法,找到“ source/class/helper/helper_seo.php ”目录下的文件,查找以下代码(大约38~43行):
- if($descriptiontext && (isset($_G['makehtml']) || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {
- $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
- }
- if($keywordstext && (isset($_G['makehtml']) || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {
- $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
- }
复制代码
修改为
- if($descriptiontext) {$seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
- }
- if($keywordstext) {$seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
-
- }
复制代码
论坛帖子描述description百度不抓取description方法,找到 source\module\forum\forum_viewthread.php 搜索代码(约672行左右):
- if($_G['forum_thread']['price'] && (IS_ROBOT || $_G['adminid'] == 1))
- $summary = str_replace(array("\r", "\n"), '', messagecutstr(strip_tags($post['message']), 160));
复制代码
改为
- if($_G['forum_thread']['price'])
- $summary = str_replace(array("\r", "\n"), '', messagecutstr(strip_tags($post['message']), 160));
复制代码
| 第四步,安装相关主动提交和自动提交插件,如果有快速收录权限,最好结合着这个来提高收录量。
找不到内容不要怕,关注我们公众号给我们留言,我们会逐一回复(问问题也可以哦(*^▽^*)~!)