9 lines
118 B
PHP
9 lines
118 B
PHP
<?php
|
|
$routes = [
|
|
'/about' => [
|
|
'file' => 'about'
|
|
],
|
|
'/' => [
|
|
'file' => 'index'
|
|
]
|
|
]; |