redirect

h2. Purpose

To redirect flow from one action to the next using an HTTP redirect.

h2. Examples

redirect(uri:"book/list")
          redirect(url:"http://www.blogjava.net/BlueSUN")
          redirect(action:"show")
          redirect(controller:"book",action:"list")
          redirect(action:"show",id:4, params:[author:"Stephen King"])
          redirect(controller: "book", action: "show", fragment: "profile")

h2. Description

Redirects the current action to another action, optionally passing parameters and/or errors.

h4. Parameters