14 lines
199 B
PHP
Executable File
14 lines
199 B
PHP
Executable File
<?php
|
|
return [
|
|
'GET' => [
|
|
'/' => 'home.php',
|
|
'/about' => 'about.php',
|
|
'/sqlite' => 'sqlite.php',
|
|
'/api/test' => 'api/example.php'
|
|
],
|
|
|
|
'POST' => [
|
|
'/api/test' => 'api/example.php'
|
|
],
|
|
];
|