<%args>
$url
</%args>

<%init>
# The next two lines are necessary to stop Apache from re-reading
# POSTed data.
$r->method('GET');
$r->headers_in->unset('Content-length');

$r->content_type('text/html');
$r->header_out(Location=>$url);
$m->abort(302);
</%init>
