mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http: Fix indentation in redir_handler
This commit is contained in:
parent
6487d371ac
commit
2368529f51
1 changed files with 3 additions and 3 deletions
|
@ -47,9 +47,9 @@ end
|
|||
|
||||
local function redir_handler(event)
|
||||
event.response.headers.location = event.request.path.."/";
|
||||
if event.request.url.query then
|
||||
event.response.headers.location = event.response.headers.location .. "?" .. event.request.url.query
|
||||
end
|
||||
if event.request.url.query then
|
||||
event.response.headers.location = event.response.headers.location .. "?" .. event.request.url.query
|
||||
end
|
||||
return 301;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue