您在這裡

請問有一個meta重覆如何解決呢

168free's 的頭像
168free 在 2010-02-28 (周日) 14:49 發表

請問大大
我新建的Drupal網站,可以正常運作
我今天在檢視原始碼的時候,

發現 head下面的前二行是這樣


這二行有重覆呢,
請問有沒有大大知道如何解決....

謝謝

你好
朋友

我是来自大陆的网友, 我也一直为这个问题而困扰, 搜索了google也没有结果.

今天我终于把它解决了

解决方法是:

在 includes/common.inc 中找到

function drupal_final_markup($content) {
// Make sure that the charset is always specified as the first element of the
// head region to prevent encoding-based attacks.
return preg_replace('/]*>/i', "\$0\n", $content, 1);
}

让后把这段修改成:
function drupal_final_markup($content) {
// Make sure that the charset is always specified as the first element of the
// head region to prevent encoding-based attacks.
//return preg_replace('/]*>/i', "\$0\n", $content, 1);
return $content;
}

问题就可以解决了. 这是drupal的一个小bug.

你可以到我的站看看 如何在淘宝网上开店 查看源代码, 你将看到我的meta是不重复的

你也可以试试哦

希望对你有所帮助