<%once> use CGI; <%init> my $q = CGI->new(); my $c = $q->cookie( -name => "toupeira", -value => "", -expires => 0, -path => "/toupeira" ); $m->clear_buffer; $r->method('GET'); $r->headers_in->unset('Content-length'); $r->content_type('text/html'); $r->err_headers_out->add('Set-Cookie' => $c ); $r->header_out(Location=> "/toupeira"); $m->abort(302);