in reply to mod perl for apache servers

Found this on http://perl.apache.org/guide/snippets:
(Edited for your sittuation)
my $r = shift; $r->headers_out(Location => 'http://www.test.com/?view=tes +t'); $r->status(REDIRECT); $r->send_http_header;

Hope this helps... (come to think of it... hope it works ;))

GreetZ!