Friendly URL's

First off did you read trough the docs ?
If so then you know a little bit how this router is supposed to work.

But to explain a bit more, You should do it like this :

$router->map( 'GET', '/THE-URL-YOU-WANT-TO-SEE', function() {
    require __DIR__ . '/Frontend/blog_show.php'; // File that you load in.
});