Why does this: ```perl $r->with(admin => '/admin', 'Admin') ->add(index => '/', '#index') ``` Not match for /admin/ But this: ```perl $r->with(admin => '/admin', 'Admin') ->add(index => '', '#index') ``` Matches both /admin and /admin/
Why does this:
Not match for /admin/
But this:
Matches both /admin and /admin/