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' => 'yii\web\UrlManager', 'enablePrettyUrl' => true, 'showScriptName' => false, ], ]

 

posted @ 2019-04-19 11:24  jiuchen  阅读(2960)  评论(0编辑  收藏  举报