Yii2安装使用
参考文档:https://www.cnblogs.com/bluealine/p/9706682.html
中文文档:http://www.yiichina.com/doc/guide/2.0/start-installation 下载 :https://github.com/yiisoft/yii2/releases/download/2.0.2/yii-basic-app-2.0.2.tgz
Yii2简单地址美化并隐藏index.php
参考文档:https://www.cnblogs.com/magy/p/4314687.html 目的:我只想去掉浏览器地址栏中的index.php?r=这一块。
在/config/web.php中 ’components’=>[] 中添加如下代码:
'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false,//隐藏index.php //'enableStrictParsing' => false, 'suffix' => '.html',//后缀,如果设置了此项,那么浏览器地址栏就必须带上.html后缀,否则会报404错误 'rules' => [ //'<controller:\w+>/<action:\w+>'=>'<controller>/<action>', ], ],如果带了改了后缀这一下,请记得一定要给浏览器地址栏的路径最后面加上.html。 如:http://localhost/web/yii/basic/web/country/index.html 改了以上这些,我发现?r=这块可以用/代替访问了,但是想隐藏掉index.php还是不行。
我们还需在index.php同级的目录下添加.htaccess文件:
打开记事本,输入以下代码:
Options +FollowSymLinks IndexIgnore */* RewriteEngine on # if a directory or a file exists, use it directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # otherwise forward it to index.php RewriteRule . index.php然后保存在与入口文件index.php同级的目录下,也就是/web目录下,文件名自己填.htaccess,文件类型选择 所有文件 (.) ,然后保存即可。
最后测试OK了!
