Phalcon 覆盖 <head> 视图文件

Phalcon Overwriting <head> of View Files

即使我的头部部分有不同的标题,Phalcon 也将其替换为 Phalcon PHP Framework

我的伏特文件:

<head>
   <title>Search</title>
   <link rel="shortcut icon" href="https://raw.githubusercontent.com/phalcon/invo/master/public/favicon.ico" type="image/x-icon"/>
</head>

在浏览器中这变成:

    <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title>Phalcon PHP Framework</title>
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
    </head>

这个标题和bootstraplink是从哪里来的?以及如何删除它。

编辑: 将 IndexController 更改为:

<?php

class IndexController extends ControllerBase
{
    public function initialize()
    {
        $this->tag->setTitle('Welcome');
    }

    public function indexAction()
    {

    }

}

和Index.volt到:

<head>
    {{ get_title() }}
    <link rel="shortcut icon" href="https://raw.githubusercontent.com/phalcon/invo/master/public/favicon.ico" type="image/x-icon"/>

仍然标题保持不变。已删除浏览器缓存以确认

谢谢。

问题是 view/index/index.volt 自动继承了 view/index.volt。我从那里删除了行,这解决了问题。