使用 nginx 重写从 URL 中删除日期

使用 nginx 重写从 URL 中删除日期

不确定为什么这不起作用。

URL: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;

答案1

弄清楚了 :)

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

相关内容