首页 > 代码库 > wordpress+lnmp出现 404 Not Found nginx

wordpress+lnmp出现 404 Not Found nginx

在本地使用Apache,因此进行重写规则是.htaccess文件,但在Nginx服务器中此文件不起作用。

只需在网站的虚拟机配置文件中添加如下

location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

wordpress+lnmp出现 404 Not Found nginx