yii2部署nginx

时间:2021-06-28 08:32:07
页面全部提示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,
],
]