WordPress在lnmp环境下打开后台页面出现404错误
程序员文章站
2022-05-23 08:17:40
LNMP环境中WordPress程序伪静态解决方案
LNMP环境是目前我们国内使用的Linux VPS配置环境中使用较多的一种环境。
你们是否有发现环境中我们较为常用的wordpress伪...
LNMP环境中WordPress程序伪静态解决方案
LNMP环境是目前我们国内使用的Linux VPS配置环境中使用较多的一种环境。
你们是否有发现环境中我们较为常用的wordpress伪静态不生效,内页出现404错误页面?
这个问题很好解决,因为我们lnmp采用的是nginx,而不是apache,所以不如apache直接丢htaccess文件到网站根目录就可以生效伪静态。
首先,打开属于我们网站的配置文件:
/usr/local/nginx/conf/vhost/www.zwqdah.cn.conf(自己添加域名自动命名)
我们会看到类似下面的代码:
server { listen 80; server_name www.zwqdah.cn; index index.html index.php; 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; }
空格后的一段:
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; }
是我添加的,只需要照着这样添加进去这一段代码就可以了。
然后,执行:
lnmp restart
已经解决了伪静态问题,其他常用的CMS也是一样的,在默认的conf下基本都包含我们所需要的CMS伪静态编译脚本。