mod_http_files: Preserve a trailing / in paths (fixes #639)

This commit is contained in:
Kim Alvefur 2016-03-03 15:31:46 +01:00
parent e08144940d
commit ae72fdd667

View file

@ -75,6 +75,9 @@ function sanitize_path(path)
out[c] = component;
end
end
if path:sub(-1,-1) == "/" then
out[c+1] = "";
end
return "/"..table.concat(out, "/");
end