-
-
Notifications
You must be signed in to change notification settings - Fork 10
iis.resp module
A8D5
Tatsuro Shibamura edited this page Jun 24, 2015
·
2 revisions
iis.resp module
-- clear response
iis.resp.clear()
-- clear response headers
iis.resp.clear_headers()
-- dump response headers
for k, v in pairs(iis.resp.get_headers()) do
iis.print(k..":"..v)
end
-- ex. 200
iis.print(iis.resp.get_status())
-- manual redirect
iis.resp.set_header("Location", "http://buchizo.wordpress.com/")
iis.exit(302)
-- set status code
iis.resp.set_status(401)
- Getting Start
- Reference