是否有一种快速而干净的方式在Magento的head部分添加rel链接。
示例包括home,index,next,prev,canonical。
我希望能够从帮助者,块,模板中做到这一点。 有关详细信息,请参阅此处
http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html
答案 0 :(得分:2)
您应该搜索magento核心代码,例如处理REL规范标记的代码:class Mage_Catalog_Block_Category_View
:
以块为例:
$headBlock = $this->getLayout()->getBlock('head');
$headBlock->addLinkRel('canonical', $category->getUrl());
但您可以在任何可以访问加载的布局的地方执行此操作。