main.php里面是这样写的
<?php
use yii\helpers\Html;
use yii\bootstrap\Nav;
use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs;
use frontend\assets\AppAsset;
use common\widgets\Alert;
AppAsset::register($this);
?>
<?php $this->beginPage() ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<?php $this->beginBody() ?>
<?=$content?>
<?php $this->endBody() ?>
</body>
</html>
<?php $this->endPage() ?>
然后页面正常 但尾部有一个
我是把main.php里的<?php $this->endPage() ?>给去掉就好了 或者去掉<?php $this->endBody() ?>
想问下 为啥会有这个404 应该怎么去掉?
查看源码,看你在底部加载了什么东东。
这是你加载的东西报的404
那个<?php $this->endPage() ?>
只是标注底部数据加载的位置,相当于一个占位符。