nginx下yii2设置路由规则
Posted kevin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx下yii2设置路由规则相关的知识,希望对你有一定的参考价值。
1. 在配置文件web.php中添加配置代码:
‘urlManager‘=>[
‘enablePrettyUrl‘ => true,
‘showScriptName‘ => false,
‘rules‘ => [
"<controller:\w+>/<action:\w+>/<id:\d+>"=>"<controller>/<action>",
"<controller:\w+>/<action:\w+>"=>"<controller>/<action>"
],
],
2. 在nginx配置文件中添加配置代码:
location / {
try_files $uri $uri/ /index.php?$args;
}
3. 一定要重启nginx。
以上是关于nginx下yii2设置路由规则的主要内容,如果未能解决你的问题,请参考以下文章