WordPress 设置固定连接后访问404的解决方法

只要在 nginx 配置文件中添加:

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

 

阅读剩余
THE END