Breaking content directory down by year/month to improve performance

I’ve also added this is Models > show.php

<?php

use Kirby\Cms\Page;

class ShowPage extends Page
{
    public function url($options = null): string
    {
        return '/shows/' . $this->uid();
    }
}