第七篇 WordPress移除链接中的index.php
进入自己的wordpress后台,登陆后进入“设置”-“固定连接”,手动删掉“/index.php”,保存。这时候除主页外其他内部链接都失效就是正常的。
进入宝塔面板-网站-wordpress的网站设置-配置信息,下划找到location区域,在location区域最后粘贴以下内容,调整格式对齐后保存。即可继续使用原链接。
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;
}
}
来自:链接