1loc = string.gsub(mg.request_info.request_uri, "page1.lua", "page.lua") 2 3mg.write("HTTP/1.0 301 Moved Permanently\r\n") 4mg.write("Location: " .. loc .. "\r\n") 5mg.write("Content-Length: 0\r\n") 6mg.write("Connection: close\r\n") 7mg.write("\r\n") 8 9