class HomePageController extends Controller{
public function actionIndex(){
return $this->render('index');
}
}
这样访问:http://127.0.0.1/yii/b/web/index.php?r=home-page
提示:
Not Found (#404)
Page not found.
哪里有错呢?
看下base\controller
url :http://127.0.0.1/yii/b/web/index.php?r=home-page/index
or
学习了,Camel case controller name not well supported #493,view文件夹也需要是’home-page’。