Yii2在nginx部署上的坑:非index默认页都报404解决办法

时间:2022-10-05 09:44:01

自己在开始在apache上搭建的,一切测试正常,结果转移到nginx平台后,发现里面的链接点击全部提示404,第一反应是.htaccess规则没有正常加载,开始尝试自己改写规则,结果没成功,后来发现,nginx平台下需要额外配置yii rewrite规则,配置如下:

在nginx 的配置文件nginx.conf(wdcp部署的多站点的,在对应nginx安装目录下vhost里找对应的conf文件)

location / {
# Redirect everything that isn't a real file to index.php
try_files $uri $uri/ /index.php?$args;
}


重启nginx服务


同时确认自己的yii工程, 在config/web.php中加入:

'components' => [
'urlManager' => [
'class' => 'yii\web\UrlManager',
'enablePrettyUrl' => true,
'showScriptName' => false,
],
]


over