404错误在WordPress配置的步骤2:Azure、nginx、wordpress 6、php 8

iswrvxsc  于 2023-02-11  发布在  WordPress
关注(0)|答案(1)|浏览(107)

我把所有的WordPress文件放在/site/wwwroot中转到浏览器中的URL,wp-admin/setup-config.php就会启动。我选择语言,输入外部数据库信息,然后当试图加载//wp 0admin/setup-config.php时出现404错误。

2uluyalo

2uluyalo1#

在ngnix的虚拟配置文件中,您必须将以下行添加到location中。

location / {
     try_files $uri $uri/ /index.php?$query_string;
}

相关问题