大家好我尝试转到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';
答案 0 :(得分:0)
您是否尝试使用以下修改路线? http://localhost:8080/post/index 其中post是您的控制器名称和索引操作。 尝试配置URL管理器,添加一些规则来处理上面的路由。 Yii 2.0文档非常广泛。 选中此http://www.yiiframework.com/doc-2.0/guide-runtime-routing.html#url-formats