You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
req.cmd_url = "/index.lua?"..conf.route_parameter.."="..vars[1].."/"..get
if req.parsed_url.query then
req.cmd_url = req.cmd_url .. '&' .. req.parsed_url.query
end
else
req.cmd_url = "/index.lua"
end
return "reparse"
end
new lines are:
if req.parsed_url.query then
req.cmd_url = req.cmd_url .. '&' .. req.parsed_url.query
end
d9k
changed the title
xavante loses get url params
xavante loses url GET params
Mar 29, 2018
example:
http://127.0.0.1:8083/test/url_params?a=1&b=2
a
andb
params are NOT inpage.GET
table.For the case of
http://127.0.0.1:8083/test/url_params&a=1&b=2
a
andb
params appear inpage.GET
table (but this url is wrong!).The text was updated successfully, but these errors were encountered: