diff options
author | daurnimator <quae@daurnimator.com> | 2016-02-15 16:28:22 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2016-02-15 16:28:22 +1100 |
commit | 6c59f3565f5d2a268655c8750b5deba680a71355 (patch) | |
tree | 4c5855b2d92d47b5424c9d86a97115bb198274e7 | |
parent | cce0c6c56f64ff81c86e8aaaa79144a5e7e2d5fe (diff) | |
download | prosody-6c59f3565f5d2a268655c8750b5deba680a71355.tar.gz prosody-6c59f3565f5d2a268655c8750b5deba680a71355.zip |
plugins/mod_http: Keep query string over automatic redirects
-rw-r--r-- | plugins/mod_http.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 086887fb..c8ca5637 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -47,6 +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 return 301; end |