Yii控制器找不到视图

问题描述 投票:2回答:1

嗨,大家好我尝试去http://localhost:8080/index.php?r=post网址,但我看#404错误。我使用yii,我创建了一个名为的控制器

PostController.php

。您可以在此处观看我的邮政编码:

   <?php
       namespace backend\controllers;
       use yii\web\Controller;

       class PostController extends Controller{
       public function actionIndex()
       {
          return $this->render('index');
       }
    }

我还在里面创建了一个index.php文件

意见/后

您可以在此文本下查看index.php代码

<?php
echo 'This is a test';
php yii yii2
1个回答
0
投票

你试过修改你的路线吗? http://localhost:8080/post/index其中post是您的控制器名称和索引操作。尝试配置URL管理器,添加一些规则来处理上面的路由。 Yii 2.0文档非常广泛。检查这个http://www.yiiframework.com/doc-2.0/guide-runtime-routing.html#url-formats

© www.soinside.com 2019 - 2024. All rights reserved.