mod_http_files: Strip trailing directory separator regardless of directionality of the slash (fixes #545)
authorKim Alvefur <zash@zash.se>
Sat, 26 Sep 2015 19:34:58 +0200
changeset 6875 eb28067faadf
parent 6872 5ce783c37024
child 6876 6dae43341b44
mod_http_files: Strip trailing directory separator regardless of directionality of the slash (fixes #545)
plugins/mod_http_files.lua
--- 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