plugins/mod_http_files.lua
changeset 6875 eb28067faadf
parent 6030 9b91242cc137
child 6876 6dae43341b44
--- a/plugins/mod_http_files.lua	Fri Sep 18 16:14:43 2015 +0200
+++ b/plugins/mod_http_files.lua	Sat Sep 26 19:34:58 2015 +0200
@@ -62,7 +62,7 @@
 		local request, response = event.request, event.response;
 		local orig_path = request.path;
 		local full_path = base_path .. (path and "/"..path or "");
-		local attr = stat((full_path:gsub('%'..path_sep..'+$','')));
+		local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
 		if not attr then
 			return 404;
 		end