1. 我是皮皮虾首页
  2. 网站部署

wordpress在nginx系统下如何去掉URL中index.php

问题复现

访问自己的博客url会带有固定链接,如:

http://blog.wsppx.cn/index.php/2021/06/17/python%e7%b3%bb%e5%88%97%e4%b9%8b%e5%9f%ba%e7%a1%80%e7%af%87%e4%b8%80/

原因

  • 进入wp-admin后台设置里面,可以看到固定链接,去掉就行
wordpress在nginx系统下如何去掉URL中index.php
  • 去掉之后会出现404,在nginx内部添加如下代码
location /
{
	 try_files $uri $uri/ /index.php?$args;
}

rewrite /wp-admin$ $scheme://$host$uri/ permanent;
  • 如果是宝塔就更简单了
wordpress在nginx系统下如何去掉URL中index.php

原创文章,作者:站长,如若转载,请注明出处:https://wsppx.cn/80/%e7%bd%91%e7%ab%99%e9%83%a8%e7%bd%b2/

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注