控制器问题 [ 2.0 版本 ]
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.
哪里有错呢?
最佳答案
其他 2 个回答
-
url :
http://127.0.0.1/yii/b/web/index.php?r=home-page/index
orclass HomePageController extends Controller{ public $defaultAction = 'index'; public function actionIndex(){ return $this->render('index'); } }
共 1 条回复okokad 觉得很赞 -
学习了,Camel case controller name not well supported #493,view文件夹也需要是'home-page'。
共 4 条回复class HomepageController extends Controller { ………………
http://127.0.0.1/yii/b/web/index.php?r=homepage/index
Not Found (#404)
然而
class HomeController extends Controller { public function actionIndexLoad() {
http://127.0.0.1/yii/b/web/index.php?r=home/index-load
这种方式却是可以的
okokad
注册时间:2016-02-29
最后登录:2017-07-01
在线时长:49小时26分
最后登录:2017-07-01
在线时长:49小时26分
- 粉丝12
- 金钱25
- 威望80
- 积分1315