老是404
<?php
namespace app\Controllers;
use yii\web\Controller;
class HelloController extends Controller
{
public function actionIndex()
{
echo 'hello world';
}
}
?>
http://127.0.0.1/basic/web/index.php?r=hello/index
<?php
namespace app\Controllers;
use yii\web\Controller;
class HelloController extends Controller
{
public function actionIndex()
{
echo 'hello world';
}
}
?>
http://127.0.0.1/basic/web/index.php?r=hello/index
2019-06-11
举报