yii2部署nginx
Posted 九尘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yii2部署nginx相关的知识,希望对你有一定的参考价值。
页面全部提示404,
nginx平台下需要额外配置yii rewrite规则,配置如下: 在nginx 的配置文件nginx.conf //增加部分 location / { # Redirect everything that isn‘t a real file to index.php try_files $uri $uri/ /index.php?$args; } 重启nginx服务 //路由优化 ‘components‘ => [ ‘urlManager‘ => [ ‘class‘ => ‘yiiwebUrlManager‘, ‘enablePrettyUrl‘ => true, ‘showScriptName‘ => false, ], ]
以上是关于yii2部署nginx的主要内容,如果未能解决你的问题,请参考以下文章
我无法部署该项目。 docker-compose 和 nginx 的问题