Hi monks!
I am just new programming in mod_perl for Apache servers. I got a problem that i do not know how can I sort it out. could you help me ?
when trying to acces http://www.test.com,
i want to redirect to http://www.test.com/?view=test that's mean, changing the argumnets. can I do this ?
sub handler
{
$r = shift;
$r->args("$view=test");
$r->content_type('text/html');
$r->send_http_header;
}
it does not bring me http://www.test.com/?view=test.
Any ideas ???
Thanx a lot!!