我在nginx服务器中有多站点子目录wordpress设置。我的帖子重定向到404未找到页面。
所以我决定在Nginx的配置文件中写一些配置代码
我的帖子网址如下
http://abc/site1/index.php/post-slug/
http://abc/site2/index.php/post-slug-1/
它们都转到404,所以我在Nginx的配置文件中编写了一些代码,如下所示
location /site1/index.php {
rewrite ^/site1/index.php/(.*) /index.php?****** permanent;
}
在这里,我还想删除'site1',因为这是动态的(多站点设置)。
还是我需要在配置文件中添加地图代码?
请帮助我解决此问题。