按照老師寫的做輸入http://localhost/basic/web/index?r=hello/index之后顯示404錯誤
補充,環(huán)境和YII均已經(jīng)安裝成功
<?php
namespace app\controllers;
use yii\web\Controller;
class HelloController extends Controller{
public function actionIndex(){ ? ? ? ? ? ?//操作必須是action開頭,action后面才是操作的名字
$request=\YII::$app->request;
echo $request->get('id');
echo 'hello world';
}
}
?>
2016-08-24
http://localhost/basic/web/index?r=hello/index
把index換成index.php, index.php 是入口文件,這個不能寫錯了,也不能不要
2015-11-03
因為你輸入的是localhost呀,你用127.0.0.1試試,立馬變。