SEO优化中,对织梦主导航的设计非常讲究,主导航链接是栏目链接,一般直接跳转;如果主导航链接是外部链接,不可直接跳出,会增加网站的跳出率。此类链接应设置在新窗口打开target="_blank",并且用nofollow不让蜘蛛抓取该链接。下面是修改方法。
打开/include/taglib/channel.lib.php,找到
05 |
$row[ 'sonids' ] = GetSonIds($row[ 'id' ], 0, false ); |
07 |
if ($row[ 'sonids' ]== '' ) $row[ 'rel' ] = '' ; |
09 |
else $row[ 'rel' ] = "id']}'" ; |
|
下面增加
$row['target'] = ($row['ispart']==2) ? "target = '_blank'" : "target = '_self'"; //新窗口打开
$row['nofollow'] = ($row['ispart']==2) ? "rel = 'nofollow'" : "rel = 'follow'"; //nofollow属性
需要currentstyle支持这两个属性,继续往下找到
$linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);
下面增加
查看源码
打印代码帮助
01 |
$linkOkstr = str_replace( "~target~" ,$row[ 'target'
| |