nginx将xxxx.html/重定向到xxxx.html

本文最后更新于:2 年前

nginx对应server中添加下面代码

1
2
3
location ~ (.*\.html)/$ {
rewrite (.*\.html)/$ $1 permanent;
}

最近leancloud统计当中还是有一堆/archives/2021/02/589e0477.html/的数据出现。迫于无奈只能通过nginx进行匹对进行重定向,以解决该问题的出现。