mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Respond with a 301 redirect for directories to append a / (fixes relative links)
This commit is contained in:
parent
7aac87fba8
commit
090589dd4b
1 changed files with 9 additions and 2 deletions
|
@ -27,11 +27,18 @@ local mime_map = {
|
|||
|
||||
function serve_file(event, path)
|
||||
local response = event.response;
|
||||
local orig_path = event.request.path;
|
||||
local full_path = http_base.."/"..path;
|
||||
if stat(full_path, "mode") == "directory" then
|
||||
if stat(full_path.."/index.html", "mode") == "file" then
|
||||
return serve_file(event, path.."/index.html");
|
||||
if full_path:sub(-1) ~= "/" then
|
||||
response.headers.location = orig_path.."/";
|
||||
return 301;
|
||||
end
|
||||
if stat(full_path.."index.html", "mode") == "file" then
|
||||
return serve_file(event, path.."index.html");
|
||||
end
|
||||
|
||||
-- TODO File listing
|
||||
return 403;
|
||||
end
|
||||
local f, err = open(full_path, "rb");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue