var data = '\n\ \n\ \n\ \n\ \n\ \n\ Inner page\n\ \n\ ' function handleRequest(request, response) { response.setStatusLine(null, 302, "Follow me"); response.setHeader("Location", "data:text/html," + escape(data)); response.setHeader("Content-Type", "text/plain"); response.write("Follow that guy!"); }