给My Account,Log In,My Wishlist链接增加nofollow属性

2,176 人次阅读
没有评论

共计 602 个字符,预计需要花费 2 分钟才能阅读完成。

大家都知道magento里面头部的My Account,Log In,My Wishlist几个链接都是通过xml布局文件进行调用的,为了SEO分配权重必须为它们加上”nofollow”属性,但它的链接标签并不是普通的标签,所以想加nofollow属性就有点难度了。下面是我的方法:
首先找到对应模板下的customer.xml 文件,默认位置是app/design/frontend/base/default/layout/customer.xml
打开编辑,例如要给”My Account”链接加”nofollow”属性, 搜索”My Account” ,然后把”rel=”nofollow”” 放在结束标签后面就解决了。完整代码如下:
[php]
<reference name="top.links">
<action method="addLink" translate="label title" module="customer"><label>My Account</label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare /><urlparams /><position>100</position><null /><aparams>rel="nofollow"</aparams></action>
</reference>
[/php]

正文完
 0