我需要在url post(wordpress)上写一个删除id的规则
https://myqite.com/12-title-of-post-one
https://myqite.com/45-title-of-post-two
https://myqite.com/56-title-of-post-nn
到
https://myqite.com/title-of-post-one
https://myqite.com/title-of-post-two
https://myqite.com/title-of-post-nn
尝试多种选择但失败。
rewrite ^([0-9]+)-(.+)$ $2 permanent;
其他
rewrite ^([0-9]+)-(.+)$ $2 last;
答案 0 :(得分:1)
经过多次测试后,我得到了解决方案
location ~ /([0-9]+)-(.+) {
return 301 https://$server_name/$2;
}