加元nofollow標記佈局我希望能夠從視圖中添加meta標籤(或控制器如果可能的話)在CakePHP中CakePHP的:從視圖
我有一個頁面像/mycontroller/myview
但是當它與訪問像過濾器:
/mycontroller/myview/page:2/max_price:500
然後我要添加元沒有後續的標籤。
在HtmlHelper類中有一個meta方法。
當我這樣稱呼它:
$this->Html->meta('keywords', 'test test test', array('inline'=>false));
它創建了一個meta標籤是這樣的:
<meta name="keywords" content="test test test" />
然而,當我這樣稱呼它:
$this->Html->meta('robots', 'noindex, nofollow', array('inline'=>false));
我自然會期待和想要它來創建此:
<meta name="robots" content="noindex, nofollow" />
相反,我得到這個雖然:
<link href="http://www.example.com/mycontroller/noindex, nofollow" type="application/rss+xml" rel="alternate" title="robots" />
我在做什麼錯?
謝謝修復它。 :)順便說一句,當內聯爲假時,每個人總是仍然使用回聲,這實際上並不會迴應任何內容,並且在您沒有回聲的情況下調用它時仍然有效。當元素不是內聯時,我沒有使用回顯,是否有任何理由?我只問,因爲我看到很多。 – 2012-01-03 15:38:47
= P你是對的,你不應該做一個回聲,如果元素不內聯..它不會改變任何東西,這只是一個壞習慣,我有.. srry – pleasedontbelong 2012-01-04 09:27:22