page1.lua 246 B

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