即使我的头部有不同的标题,Phalcon 也用Phalcon PHP 框架替换了它
我的伏特文件:
<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>
这个标题和引导链接是从哪里来的?以及如何删除它。
编辑:将 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"/>
仍然标题保持不变。删除浏览器缓存以确认
谢谢。