下载安装yii框架之后
第一件事情,配置一个密钥
第二件事,初始url模式: http://localhost/yii2/web/index.php/?r=hello/index,而我们习惯的模式是http://localhost/yii2/web/index.php/hello/index
重写URL非常简单打开config下下的web.php 在‘components’ 配置项里加入下面的代码
'urlManager' => [ //设置pathinfo模式 'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
],
],