civetweb/test/page1.lua

9 lines
246 B
Lua
Raw Normal View History

2017-10-28 00:55:21 +02: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")