DEDECMS文档关键词,链接重复的解决办法

时间:2015-07-21

相信经常使用dedecms的朋友遇到过这样的问题。例如,我在文档关键词中设置锚文本链接的时候,“站长基地”与“站长”同时都指向于http://www.genban.org。当文档中出现站长基地的时候,这时只有“站长”含有链接,而我们希望的则是“站长基地”带有链接,那么如何解决呢?教程如下:

解决方法(先备份)

  第一步:打开目录include中的arc.archivew.class.php

  找到以下代码:

 

  1. function ReplaceKeyword($kw,&$body

从这里然后一直到最下面。替换这段代码:

  1. function ReplaceKeyword($kw,&$body)  
  2.   {  
  3.   global $cfg_cmspath;  
  4.   $maxkey = 5;  
  5.   $kws = explode(",",trim($kw)); //以分好为间隔符  
  6.   $i=0;  
  7.   $karr = $kaarr = $GLOBALS['replaced'] = array();  
  8.   //暂时屏蔽超链接  
  9.   $body = preg_replace("/(<a(.*))(>)(.*)(<)(/a>)/isU"'1-]-4-[-6'$body);  
  10.   global $dsql;  
  11.   $query="SELECT * FROM dede_keywords WHERE rpurl<>'' and sta=1 ORDER BY length(keyword)desc";  
  12.   $dsql->SetQuery($query);  
  13.   $dsql->Execute();  
  14.   while($row = $dsql->GetArray())  
  15.   {  
  16.   $key = trim($row['keyword']);  
  17.   $key_url=trim($row['rpurl']);  
  18.   $karr[] = $key;  
  19.   $kaarr[] = "<u><a href='$key_url' target='_blank'>$key</a></u>";  
  20.   }  
  21.   foreach ($karr as $key => $word)  
  22.   {  
  23.   $body = preg_replace("/(^|>)([^<]+)(?=<|$)/sUe""_highlight('2', $karr[$key], $kaarr[$key], '1')"$body);  
  24.   //echo $body."<br/>";  
  25.   //恢复超链接  
  26.   $body = preg_replace("/(<a(.*))-]-(.*)-[-(/a>)/isU"'1>3<4'$body);  
  27.   //暂时屏蔽超链接  
  28.   $body = preg_replace("/(<a(.*))(>)(.*)(<)(/a>)/isU"'1-]-4-[-6'$body);  
  29.   }  
  30.   //恢复超链接  
  31.   $body = preg_replace("/(<a(.*))-]-(.*)-[-(/a>)/isU"'1>3<4'$body);  
  32.   return $body;  
  33.   }  
  34.   }//End Archives  
  35.   //高亮专用, 替换多次是可能不能达到最多次  
  36.   function _highlight($string$words$result$pre)  
  37.   {  
  38.   global $cfg_replace_num;  
  39.   $string = str_replace('"''"'$string);  
  40.   if($GLOBALS['replaced'][$words] == 1)  
  41.   {  
  42.   return $pre.$string;  
  43.   }  
  44.   if($cfg_replace_num > 0)  
  45.   {  
  46.   $string = preg_replace("/".preg_quote($words)."/"$result$string$cfg_replace_num);  
  47.   if(strpos($string$words) !== false)  
  48.   {  
  49.   $GLOBALS['replaced'][$words] = 1;  
  50.   //echo $words;  
  51.   }  
  52.   }  
  53.   else 
  54.   {  
  55.   $string = str_replace($words$result$string);  
  56.   }  
  57.   return $pre.$string;  
  58.   }  

 

进入后台生成,至此大功告成。
 

 DEDECMS文档关键词维护中的"频率"是什么意思?

上一条:DEDECMS文档关键词维护中的"频率"是什么意思? 下一条:dedecms怎么在列表页调用或实现显示图片集的张数

相关文章

最新文章