关于Yii2.0的url路径优化问题(配置虚拟路径)
Posted Lucky_man
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Yii2.0的url路径优化问题(配置虚拟路径)相关的知识,希望对你有一定的参考价值。
backend/config/main.php
‘urlManager‘ => [ ‘enablePrettyUrl‘ => true, ‘showScriptName‘ => false, ‘enableStrictParsing‘ => false, ‘suffix‘ => ‘.html‘, ‘rules‘ => [ ‘<controller:\w+>/<id:\d+>‘ => ‘<controller>/view‘, ], ],
如果在web文件夹下增加一个.htaccess文件,配置如下:
Options +FollowSymLinks IndexIgnore */* RewriteEngine on # if a directory or a file exists, use it directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php
以上是关于关于Yii2.0的url路径优化问题(配置虚拟路径)的主要内容,如果未能解决你的问题,请参考以下文章
Yii2.0 to(), toRoute(), current()区别用法