1 2 3 4 5 6 7 8 9
<?php Router::register('index', 'Main', 'index'); class Main extends Controller { public function index($routed, $remainder) { $this->showView('index'); } }