Nginx

使用 nginx 重寫從 URL 中刪除日期

  • August 30, 2019

不確定為什麼這不起作用。

網址:https://example.com/blog/2009/07/23/example 重定向到:https://example.com/example

rewrite "^/blog/([0-9]{4})/([0-9]{2})/([0-9]{2})/(.*)" /$5 permanent;

弄清楚了 :)

location /blog {
rewrite "/([0-9]{4})/([0-9]{2})/([0-9]{2})/(.*)" /$4 permanent;
}

引用自:https://serverfault.com/questions/947681