if ($r->method eq "GET") { my $path = $r->url->path(); $path = substr($path,1); #strip leading slash print "$path\n"; $c->send_file_response($path); #or do whatever you want here }