在网址

时间:2017-01-08 19:27:50

标签: wordpress nginx url-rewriting

我需要在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;

1 个答案:

答案 0 :(得分:1)

经过多次测试后,我得到了解决方案

location ~ /([0-9]+)-(.+) {
   return 301 https://$server_name/$2;
}
相关问题