求助首页调用最新评论 商品链接为动态链接 如何静态化

2016-07-07 15:12 来源:www.chinab4c.com 作者:ecshop专家

代码如下 不知道怎么改才能让首页显示商品链接静态化 动态化不利于收录并分权重! 求助

<meta http-equiv="Content-Type" content="text/html; charset=gbk">

<?php
if(!function_exists("get_comments")){
function get_comments($num)
{
$sql = 'SELECT a.*,b.goods_id,b.goods_thumb,b.goods_name FROM '. $GLOBALS['ecs']->table('comment') .
' AS a,'. $GLOBALS['ecs']->table('goods') .'AS b WHERE a.status = 1 AND a.parent_id = 0 and a.comment_type=0 and a.id_value=b.goods_id '.
' ORDER BY a.add_time DESC';
if ($num > 0)
{
$sql .= ' LIMIT ' . $num;
}
//echo $sql;

$res = $GLOBALS['db']->getAll($sql);
$comments = array();
foreach ($res AS $idx => $row)
{
$comments[$idx]['add_time'] = local_date($GLOBALS['_CFG']['time_format'], $row['add_time']);
$comments[$idx]['content'] = $row['content'];
$comments[$idx]['id_value'] = $row['id_value'];
$comments[$idx]['goods_thumb']= get_image_path($row['goods_id'], $row['goods_thumb'], true);
$comments[$idx]['goods_name'] = $row['goods_name'];
}
return $comments;
}
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<!--数据调用-最新评论开始 -->
<?php
$this->assign('my_comments',get_comments(4)); // 数据条数
?>


<div class="commentTitle"></div>
<!--{foreach from=$my_comments item=comments}-->

<div class="commentInfo">
<div class="commentPic"><a href="goods.php?id={$comments.id_value}"><img src="{$comments.goods_thumb}" /></a></div><div class="commentName"><a href="goods.php?id={$comments.id_value}">{$comments.goods_name}</a></div><div class="commentText">{$comments.content|truncate:100:""} </div>
</div>
<!--{/foreach}-->

回答:
你可以调用build_url函数

你可以调用build_url函数
netaxcess 发表于 2011-12-16 17:03



请教如何做 请多多指教

顶起 请大家帮忙

请大家帮忙解决 问题很严重 会有重估收录现象

什么玩意啊~ 我擦了~

同求~~~~~~~

完全看不懂。。

={$comments.id_value}"><img src="{$comments.goods_thumb}"
没看懂这个

href="goods.php?id={$comments.id_value}"

这里改吧,

href="goods-{$comments.id_value}.html"

改成你也用的伪静态规则格式就行了, 复杂的重写就不行了,

href="goods.php?id={$comments.id_value}"

这里改吧,

href="goods-{$comments.id_value}.html"

改 ...
adcode 发表于 2011-12-29 23:50


谢谢 已经解决 希望大家也改下 有利于seo

。。。。。。。。。。。。。。。。。。。

或者直接goods-id.html

虽然看不懂,但是这个功能很重要