yii2.0如何优化路由
Posted 小白兔晒黑了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2.0如何优化路由相关的知识,希望对你有一定的参考价值。
比如我的路由是 http://localhost/basic/web/?r=site/index
现在想改成 http://localhost/basic/web/site/index 的形式
第一步 在config/web/php里把urlManager的注释打开
‘urlManager‘ => [ ‘enablePrettyUrl‘ => true, ‘showScriptName‘ => false, ‘rules‘ => [ ], ],
第二步 在basic\web目录下创建.htaccess文件
在里面复制如下内容
Options +FollowSymLinks IndexIgnore */* RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php
就可以了
以上是关于yii2.0如何优化路由的主要内容,如果未能解决你的问题,请参考以下文章