当前位置:首页 > CMS教程 > ecshop > 列表

ECSHOP的SEO优化有什么好的建议

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-15 23:15:48 浏览: 评论:0 

1、ecshop的标题优化

第一步,去掉标题上的Powered by Ecshop字样,这点我们在之前的经验分享里有提到过,大家可以查找一下.

第二步,打开模板文件夹的goods.dwt文件,找到{$page_title},把它修改为{$goods.goods_style_name}_{$shop_name}

第三步,找到includes/lib_main.php第143行,将

$page_title=$GLOBALS['_CFG']['shop_title'];

改为:

$page_title=$GLOBALS['_CFG']['shop_name'];

然后找到下面这样的代码

  1. if (!emptyempty($str))  
  2. {  
  3. $page_title = $str . '_' . $page_title;  
  4. $ur_here .= ' > ' . $str

在这段代码的前面.加入

if ($filename == 'index') $page_title=$GLOBALS['_CFG']['shop_title']; 

这样的话,标题就改好了.

2、去掉 ecshop head 之间的Generator" content="ECSHOP v2.7.3"

下面讲一下怎么删除这行代码,让系统不再自动产生,打开 includes/cls_template.php 文件,大概在1087行左右,找到

  1. $source = preg_replace('/ 
  2. /i', "\r\n"$source);  

把它删除掉就行了。

3、Ecshop分类树在所有页面显示全部的方法

打开includes/lib_goods.php,找到get_categories_tree()函数部分,找到这一段:

  1. function get_categories_tree($cat_id = 0)  
  2. {  
  3. if ($cat_id > 0)  
  4. {  
  5. $sql = 'SELECT parent_id FROM ' . $GLOBALS['ecs']->table('category') . " WHERE cat_id = '$cat_id'";  
  6.  
  7. $parent_id = $GLOBALS['db']->getOne($sql);  
  8. }  
  9. else  
  10. {  
  11. $parent_id = 0;  
这些就是归纳的一些优化方法,如果大家还有不明白的地方可以去论坛了解。

Tags: ECSHOP SEO优化

分享到: