生成关键字排名报告

时间:2013-01-26 13:48:51

标签: matomo

在详细的访问者日志中,piwik能够在搜索引擎上列出关键字的位置。

例如:

这在哪里存储在数据库中?我一直在寻找它,但无法在日志表和访问者表中找到任何内容。

1 个答案:

答案 0 :(得分:2)

这是Google特有的。搜索结果中的排名实际上由Google在引荐来源中作为cd=参数提交。有一个breakdown of all the available params可用。

Piwik中的访客日志报告只是从为访问时存储的引荐来源网址中提取此信息。看看source of the Live plugin

function getKeywordPosition()
{
    if($this->getRefererType() == 'search'
        && strpos($this->getRefererName(), 'Google') !== false)
    {
        $url = @parse_url($this->details['referer_url']);
        if(empty($url['query']))
        {
            return null;
        }
        $position = Piwik_Common::getParameterFromQueryString($url['query'], 'cd');
        if(!empty($position))
        {
            return $position;
        }
    }
    return null;
}