Answer a 303 redirection to location.

Property definitions

nitcorn $ FileServer :: answer_redirection
	# Answer a 303 redirection to `location`.
	fun answer_redirection(location: String): HttpResponse do
		var response = new HttpResponse(303)
		response.header["Location"] = location
		return response
	end
lib/nitcorn/file_server.nit:145,2--150,4