我需要删除大量的尾部斜杠,现在我有
rewrite ^/(.*)/$ /$1 permanent;
所以www.example.com/
就变成了www.example.com
。
很好,但是当我转到www.example.com///
(任意数量的斜杠)时,它不会重定向。我需要让末尾的任意数量的斜杠重定向到没有斜杠的页面。
我需要删除大量的尾部斜杠,现在我有
rewrite ^/(.*)/$ /$1 permanent;
所以www.example.com/
就变成了www.example.com
。
很好,但是当我转到www.example.com///
(任意数量的斜杠)时,它不会重定向。我需要让末尾的任意数量的斜杠重定向到没有斜杠的页面。