您好我知道如何在Zend中编写Meta标签以加强这样的操作:
// action body
$this->_helper->layout()->getView()->headTitle(' Title Here') // setting the page title
$this->view->headMeta()->appendName('keywords', 'heywords here');
$this->view->headMeta()->appendName('description', 'description here');
我想知道meta nofollow的语法
由于
答案 0 :(得分:2)
$this->view->headMeta()->appendProperty('rel', 'nofollow');