Files
cpp-project-template/third_party/prometheus/3rdparty/civetweb/test/page1.lua

9 lines
246 B
Lua
Raw Normal View History

2025-08-22 18:22:57 +08:00
loc = string.gsub(mg.request_info.request_uri, "page1.lua", "page.lua")
mg.write("HTTP/1.0 301 Moved Permanently\r\n")
mg.write("Location: " .. loc .. "\r\n")
mg.write("Content-Length: 0\r\n")
mg.write("Connection: close\r\n")
mg.write("\r\n")