# File lib/evma_httpserver/response.rb, line 287 287: def send_redirect location 288: @status = 302 # TODO, make 301 available by parameter 289: @headers["Location"] = location 290: send_response 291: end