进管理后台,在固定链接设置里面填自定义结构:/%post_id%.html
保存后会打不开文章nginx会报错,需要修改网站设置,添加以下内容,然后重启nginx即可
location /
{
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
进管理后台,在固定链接设置里面填自定义结构:/%post_id%.html
保存后会打不开文章nginx会报错,需要修改网站设置,添加以下内容,然后重启nginx即可
location /
{
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;