如何使用html帮助程序创建它? (使用inline = false,这样我就可以针对每个 View 指定它)

<link rel="canonical" href="http://www.example.com/product.php?item=swedish-fish" />

除了无法正常工作的补丁外,似乎无法在此找到任何东西。

最佳答案

在CakePHP Bugtracking网站中找到了此文件:http://cakephp.lighthouseapp.com/projects/42648/tickets/1063-support-for-custom-meta-tag-elements-in-htmlhelper

显然你可以使用

echo $this->Html->meta('canonical', 'http:://example.com', array('rel'=>'canonical', 'type'=>null, 'title'=>null));
//outputs <link href="http:://example.com" rel="canonical" />

关于CakePHP Canonical标签和html helper,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5310034/

10-13 01:24