标签: 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/
答案 0 :(得分:0)
不使用尾部斜杠捕获所有内容,并为其添加尾部斜杠。
rewrite ^(.*[^/])$ $1/ permanent;