wordpress二级目录伪静态

如果原来已经在根目录建立一个wordpress网站,又要在二级目录再安装一个wordpress,如果使用类似文章ID.html等形式的链接则二级目录的网站会出现404无法访问的情况。其实我们使用如下伪静态规则,在网站设置中的”伪静态“规则去粘贴即可,最好重启下nginx或直接重启服务器。

  1. location /  
  2. {  
  3.      try_files $uri $uri/ /index.php?$args;  
  4. }  
  5.   
  6. rewrite /wp-admin$ $scheme://$host$uri/ permanent;  
  7.   
  8.   
  9. location /blog/ {  
  10. index index.html index.php;  
  11. if (-f $request_filename/index.html){  
  12. rewrite (.*) $1/index.html break;  
  13. }  
  14. if (-f $request_filename/index.php){  
  15. rewrite (.*) $1/index.php;  
  16. }  
  17. if (!-f $request_filename){  
  18. rewrite (.*) /blog/index.php;  
  19. }  
  20. }  
wordpress
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容