| 123456789 | <?-- This *.lp file simply runs the *.lua file in the same directory.n = string.match(mg.request_info.uri, "^(.*)%.lp$")if mg.system:find("Windows") then    n = string.gsub(n, [[/]], [[\]])endn = mg.document_root .. n .. ".lua"dofile(n)?>
 |