如何在URl中为2个或更多目录添加尾部斜杠?

时间:2012-03-04 23:17:25

标签: url nginx slash subdirectory

nginx服务器 如果我有两个或更多子目录,我在添加尾部斜杠时遇到问题

rewrite ^/([^.]*[^/])$ $1/ permanent; //this is working example if I have one directory

如果我有两个或更多子目录,如何添加尾部斜杠?

http://example.com/foo/foo2/
http://example.com/foo/foo2/

1 个答案:

答案 0 :(得分:0)

不使用尾部斜杠捕获所有内容,并为其添加尾部斜杠。

rewrite ^(.*[^/])$ $1/ permanent;