php

yii框架学习

2018-07-26  本文已影响0人  落魄PHP女程序员

下载安装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' => [

            ],

  ],

上一篇下一篇

猜你喜欢

热点阅读