美文网首页php
yii框架学习

yii框架学习

作者: 落魄PHP女程序员 | 来源:发表于2018-07-26 16:19 被阅读0次

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

                ],

      ],

    相关文章

      网友评论

        本文标题:yii框架学习

        本文链接:https://www.haomeiwen.com/subject/ibvbmftx.html