my ($orig, $self) = (shift, shift);
no warnings::illegalproto;
(
+ sub (/**.*) {
+ my ($self, $path) = @_;
+ return unless $path =~ s/\/-/\//;
+ SCSite::redispatch_to "/static/${path}";
+ },
sub (/static/...) { $self->_static_handler },
sub (/favicon + .ico) { $self->_static_handler },
$self->$orig(@_)